C#语法糖——持续更新
2021-03-04 06:26
阅读:454
标签:def switch pre -- 更新 lang code eth turn C#语法糖——持续更新 标签:def switch pre -- 更新 lang code eth turn 原文地址:https://www.cnblogs.com/boydenyol/p/12946029.htmlC# 语法糖——持续更新
1. return的switch写法
public string ReturnMethod(int x)
{
return x switch
{
2 => "2",
3 => "3",
_ => "default" //_ 代表switch中的default
};
}
评论
亲,登录后才可以留言!