默认运算符
值类型(其中 T:struct)
内置的原始数据类型,例如 char
,int
和 float
,以及用 struct
或 enum
声明的用户定义类型。他们的默认值是 new T()
:
default(int) // 0
default(DateTime) // 0001-01-01 12:00:00 AM
default(char) // '\0' This is the "null character", not a zero or a line break.
default(Guid) // 00000000-0000-0000-0000-000000000000
default(MyStruct) // new MyStruct()
// Note: default of an enum is 0, and not the first *key* in that enum
// so it could potentially fail the Enum.IsDefined test
default(MyEnum) // (MyEnum)0
参考类型(其中 T:类)
任何 class
,interface
,数组或委托类型。他们的默认值是 null
:
default(object) // null
default(string) // null
default(MyClass) // null
default(IDisposable) // null
default(dynamic) // null