2021
01-08
01-08
C#9新特性之增强的模式匹配
IntroC#9中进一步增强了模式匹配的用法,使得模式匹配更为强大,我们一起来了解一下吧SampleC#9中增强了模式匹配的用法,增加了and/or/not操作符,而且可以直接判断属性,来看一下下面的这个示例:varperson=newPerson();//or//string.IsNullOrEmpty(person.Description)if(person.Descriptionisnullor{Length:0}){Console.WriteLine($"{nameof(person.Description)}isIsNullOrEmpty");}//and//!str...
继续阅读 >