首页 > 代码库 > 匿名类型

匿名类型

匿名类型在介绍LINQ查询特性的细节之前,然我们学习一个允许我们创建无名类类型的特性。不足为奇它叫匿名类型(anonymous type).匿名类型经常用于LINQ查询的结果之中。匿名类型只能和局部变量配合使用,不能用于类成员。由于匿名类型没有名字,我们必须使用var关键字作为变量类型。不能设置匿名类型对象的属性。编译器为匿名类型创建的属性是只读的。namespace ConsoleApplication1{    class other    {        static public int high = 123;    }    class Program    {        static void Main(string[] args)        {            string sex = "man";            var student = new { name = "小明", age = 11 };//匿名对象初始化语句,必须使用var            Console.Write("{0} {1} {2} {3}",student.name,student.age,sex,other.high);            Console.Read();        }    }}
技术分享

 

匿名类型