(精华)2020年8月11日 C#基础知识点 匿名类的使用(object,var,dynamic)
#region3.0出了个匿名类{Console.WriteLine("*****************匿名类**************");Studentstudent=newStudent(){Id=1,Name="Richard",Age=25,ClassId=2};student.Study();//-------------------------匿名类的使用------------