标签:ide 添加 new 特性 let add eva var delete
特性属于元数据,一般不能改,但可以通过TypeDescriptor添加类级别的特性,也只能通过TypeDescriptor获取到这个类特性
Entity e=new Entity(); ColumnAttribute c = new ColumnAttribute() { LogicDeleteValue = "wang" }; TypeDescriptionProvider ty = TypeDescriptor.AddAttributes(e, c); var x = TypeDescriptor.GetAttributes(e);
标签:ide 添加 new 特性 let add eva var delete
原文地址:http://www.cnblogs.com/rexfieBlogs/p/7343918.html