You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
925 B
C#

11 months ago
namespace DS.Module.Nuget
12 months ago
{
11 months ago
public class Class1
12 months ago
{
11 months ago
public void test()
{
int? x = null;
//// 使用传统的 if 语句来检查值是否为 null
//if (x == null) {
// // ...
//}
//// 使用模式匹配来检查值是否为 null
//private match(x)
// {
// null =>1 // ...
// value => // ...
// }
// 使用传统的 if 语句来检查值是否为 null
//int? x = null;
//if (x != null)
//{
// // ...
//}
//// 使用 null 传播来检查值是否为 null
//int y = x ?? 0; // 如果 x 为 null则 y 将为 0
///直接抛出空异常 如果数据为空
ArgumentNullException.ThrowIfNull("");
11 months ago
}
12 months ago
}
12 months ago
}