"is" 运算符后花括号的含义
Meaning of curly braces after the "is" operator
我在某些 C# 源代码中发现了以下行:
if(!(context.Compilation.GetTypeByMetadataName("Xunit.FactAttribute")
is { } factAttribute))
这是另一个:
if(!(diagnostic.Location.SourceTree is { } tree))
is
运算符后的花括号 ({ }
) 是什么意思?
这是 C# 8.0 中引入的新模式匹配功能,称为 property pattern。在这种特殊情况下,它用于检查对象是否为空,链接文章中的示例:
static string Display(object o) => o switch
{
Point { X: 0, Y: 0 } p => "origin",
Point { X: var x, Y: var y } p => $"({x}, {y})",
{} => o.ToString(),
null => "null"
};
我在某些 C# 源代码中发现了以下行:
if(!(context.Compilation.GetTypeByMetadataName("Xunit.FactAttribute")
is { } factAttribute))
这是另一个:
if(!(diagnostic.Location.SourceTree is { } tree))
is
运算符后的花括号 ({ }
) 是什么意思?
这是 C# 8.0 中引入的新模式匹配功能,称为 property pattern。在这种特殊情况下,它用于检查对象是否为空,链接文章中的示例:
static string Display(object o) => o switch
{
Point { X: 0, Y: 0 } p => "origin",
Point { X: var x, Y: var y } p => $"({x}, {y})",
{} => o.ToString(),
null => "null"
};