您好,登錄后才能下訂單哦!
===========================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) { } } }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。