C 語法糖——持續更新 1. return的switch寫法 ...
C# 語法糖——持續更新
1. return的switch寫法
public string ReturnMethod(int x)
{
return x switch
{
2 => "2",
3 => "3",
_ => "default" //_ 代表switch中的default
};
}
C 語法糖——持續更新 1. return的switch寫法 ...
public string ReturnMethod(int x)
{
return x switch
{
2 => "2",
3 => "3",
_ => "default" //_ 代表switch中的default
};
}