摘要: 属性:提供对私有字段的权限和方式访问封装。特性:为目标元素提供关联的附件信息,在运行时以反射的方式影响程序的行为。目标元素包括:程序集,模块,类,类型,属性,方法,甚至函数参数。主要应用:序列化,编译器指令,设计模式等方面。AttributeUsage:只能放在其他特性定义上,用来规范其权限DllImport:导入已有的非托管代码,只能放置在方法上。特性列表http://msdn.microsoft.com/en-us/library/aa311259(VS.71).aspx 阅读全文
posted @ 2013-08-21 13:22 瓜王 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 接受数据接口: public ActionResult PostDownloadLog(PostDownloadLog postDownloadLogs)PostDownLoadLogL类public class PostDownloadLog{public List DownloadLogs { get; set; }}UbtCourseDownload类 public class UbtCourseDownload { public string Id{get;set;} public string WWID { get; set; } ... 阅读全文
posted @ 2013-08-21 11:37 瓜王 阅读(1342) 评论(0) 推荐(0) 编辑