91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

編寫自定義特性

發布時間: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

梅州市| 托克逊县| 新昌县| 阳城县| 兴山县| 莱州市| 东安县| 临朐县| 和平县| 竹山县| 辽宁省| 昌黎县| 沂水县| 泾阳县| 肇东市| 海晏县| 临武县| 望都县| 南召县| 衢州市| 鹰潭市| 长治市| 泉州市| 安仁县| 县级市| 门头沟区| 巴林左旗| 五莲县| 乌兰浩特市| 新民市| 土默特右旗| 呼玛县| 石景山区| 商南县| 德庆县| 晋江市| 黄骅市| 泽州县| 井研县| 三亚市| 保亭|