C#|C# 数组,对象实例化并赋值

【数组】
【C#|C# 数组,对象实例化并赋值】数组实例化,并赋值时,可以省略new[]。

int[] a=new [2]; --未赋值 int[] a={1,2}; --赋值

【对象】
对象实例化,并赋值时,可以省略()。
class test { public string name{get; set; } }test a=new test(); --未赋值 test a=new test{name="xiao"}; --赋值


转载于:https://www.cnblogs.com/itsone/p/10516999.html

    推荐阅读