中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

編寫自定義特性

發布時間:2020-06-26 13:52:43 來源:網絡 閱讀:469 作者:1473348968 欄目:編程語言

===========================Document.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
    [AttributeUsage(AttributeTargets.Property,//該特性能夠應用的范圍(只能用于屬性)
        AllowMultiple = true,//是否支持多個應用到同一個項上
        Inherited = true)//如果特性應用到類或接口上,就會自動應用到所有派生的類或接口上,
        ]              //如果特性應用在屬性或方法上,就會自動應用到該方法或屬性的重寫版本上
    public class DocumentAttribute : Attribute
    {
        private string m_strName;
        private bool m_blnIsYes;
        public bool IsYes { get { return m_blnIsYes; } set { m_blnIsYes = value; } }
        public DocumentAttribute(string p_name)
        {
            this.m_strName = p_name;
        }
    }
}

===========================主程序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
    class Program
    {
        //指定特性
        [Document("文檔一",//構造函數需要傳入的值
            IsYes = true)]//可選參數(Document類的屬性)
        public string Name { get; set; }
        static void Main(string[] args)
        {
        }
    }
}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

五河县| 理塘县| 民丰县| 随州市| 乐安县| 陆良县| 泉州市| 七台河市| 永川市| 沾益县| 东阳市| 赤壁市| 察隅县| 海阳市| 朝阳市| 永川市| 深水埗区| 分宜县| 桂林市| 德昌县| 肥西县| 诏安县| 博爱县| 通山县| 都昌县| 西贡区| 华阴市| 策勒县| 龙门县| 濮阳市| 怀来县| 桂平市| 建昌县| 富民县| 闵行区| 临泽县| 荔浦县| 太仆寺旗| 临桂县| 博野县| 嘉定区|