摘要: [AttributeUsageAttribute(AttributeTargets.All, Inherited = false, AllowMultiple = true)]//通过此定义了一个特性My,可用于任何地方。 public class MyAttribute : Attribute//构造函数,接受一个参数,一个返回string类型的方法 { private string str; public String Name { get; set; } public MyAttribute(string s) { this.str = s; } public string GetStr 阅读全文
posted @ 2012-11-26 22:01 hometown 阅读(164) 评论(0) 推荐(0) 编辑