2011年6月21日
摘要: [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Struct, AllowMultiple = true) // multiuse attribute]public class Author : System.Attribute{ string name; public double version; public Author(string name) { this.name = name; version = 1.0; // Default value } public strin 阅读全文
posted @ 2011-06-21 12:33 一直在前进 阅读(231) 评论(0) 推荐(0) 编辑