我在VS2015 Update 1中使用可以为空的long switch语句时看到了一些奇怪的行为,我在其他Visual Studio版本中没有看到它按预期运行。
class Program
{
static void Main(string[] args)
{
NullableTest(-1);
NullableTest(0);
NullableTest(1);
NullableTest(2);
NullableTest(null);
}
public static void NullableTest(long? input)
{
string switch1;
switch (input)
{
case 0:
switch1 = "0";
break;
case 1:
switch1 = "1";
break;
default:
switch1 = "d";
break;
}
string switch2;
switch (input)
{
case -1:
switch2 = "-1";
break;
case 0:
switch2 = "0";
break;
case 1:
switch2 = "1";
break;
default:
switch2 = "d";
break;
}
string ifElse;
if (input == 0)
{
ifElse = "0";
}
else if (input == 1)
{
ifElse = "1";
}
else
{
ifElse = "d";
}
Console.WriteLine("Input = {0}, Switch 1 output = {1}, Switch 2 output = {2}, If Else = {3}", input, switch1, switch2, ifElse);
}
此示例代码生成以下输出(为了便于阅读而对齐):
Input = -1, Switch 1 output = d, Switch 2 output = d, If Else = d
Input = 0, Switch 1 output = 0, Switch 2 output = d, If Else = 0
Input = 1, Switch 1 output = d, Switch 2 output = d, If Else = 1
Input = 2, Switch 1 output = d, Switch 2 output = d, If Else = d
Input = , Switch 1 output = d, Switch 2 output = d, If Else = d
我只是用Nullable类型观察这种行为。非可空类型按预期工作。
请注意, 不 与this question中的行为相同,并且不是由VS2015中已修复的this编译器错误引起的更新1.我已经验证这两个示例都正确运行。
答案 0 :(得分:2)
看起来这是由this bug引起的,并已使用this pull request修复。
我已经尝试了最近构建的Roslyn,问题中的示例代码现在按预期工作。
Here是MSBuild Tools 2015的更新版本,已更正此问题。
答案 1 :(得分:1)
这是一个错误。我相信它必须是同一个bug的遗留物。您最好用If
替换代码,以避免任何意外行为。