What's the difference between struct and class in .NET?

前端 未结 19 1385
一向
一向 2020-11-22 01:51

What\'s the difference between struct and class in .NET?

19条回答
  •  说谎
    说谎 (楼主)
    2020-11-22 02:02

    Structs are the actual value - they can be empty but never null

    This is true, however also note that as of .NET 2 structs support a Nullable version and C# supplies some syntactic sugar to make it easier to use.

    int? value = null;
    value  = 1;
    

提交回复
热议问题