摘要: /// /// 备注特性 /// public class RemarkAttribute : Attribute { /// /// 备注 /// public string Remark { get; set; } public RemarkAttribute(string remark) { this.Remark = remark; } } /// /// 枚举扩展类 /// public st... 阅读全文
posted @ 2013-07-15 14:04 韩天伟 阅读(1808) 评论(0) 推荐(0)