我收到以下 FxCop 错误:
CA1820:Microsoft.Performance:将“Program.Main()”中对“string.operator ==(string, string)”的调用替换为对“String.IsNullOrEmpty”的调用。
static void Main()
{
string str = "abc";
switch (str)
{
case "":
Console.WriteLine("Hello");
break;
}
Console.ReadLine();
}