学习C#:Attribute与Property 【http://developer.51cto.com/art/200908/141545.htm】
摘要:
一.什么是Attribute先看下面的三段代码:1.自定义Attribute类:VersionAttribute[AttributeUsage(AttributeTargets.Class)] publicclassVersionAttribute:Attribute { publicstringName{get;set;} publicstringDate{get;set;} publicstringDescribtion{get;set;} }2.使用自定义Attribute的Class:[Version(Name="hyddd",Date="2009-07- 阅读全文
posted @ 2011-12-20 15:24 cpetco_andy 阅读(407) 评论(0) 推荐(0) 编辑