首页 > 代码库 > C#匿名类型 - Anonymous Types
C#匿名类型 - Anonymous Types
【C#匿名类型 - Anonymous Types】
Anonymous types provide a convenient way to encapsulate a set of read-only properties into a single object without having to explicitly define a type first. The type name is generated by the compiler and is not available at the source code level. The type of each property is inferred by the compiler.
匿名类型属性为只读,被编译器生成,每个属性被编译器推断生成。
匿名类型最常用场景为,当一个类数据过大,而我们只想抽取其中几个属性来使用时。例如:
也可以生成匿名类型数组:
参考:http://msdn.microsoft.com/zh-cn/library/bb397696.aspx
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。