switch 式は、式コンテキストでスイッチのようなセマンティクスを提供します。
switch は、一致する式とのパターン一致に基づいて、候補リストから単一の switch 部分を選択して実行する select ステートメントです。
単一の式を 3 つ以上の条件に対してテストする必要がある場合は、通常、if-else 構文の代わりに switch ステートメントが使用されます。
新しいスイッチの書き込み方法
var message = c switch{ Fruits.Red => "The Fruits is red", Fruits.Green => "The Fruits is green", Fruits.Blue => "The Fruits is blue" };
class Program{ public enum Fruits { Red, Green, Blue } public static void Main(){ Fruits c = (Fruits)(new Random()).Next(0, 3); switch (c){ case Fruits.Red: Console.WriteLine("The Fruits is red"); break; case Fruits.Green: Console.WriteLine("The Fruits is green"); break; case Fruits.Blue: Console.WriteLine("The Fruits is blue"); break; default: Console.WriteLine("The Fruits is unknown."); break; } var message = c switch{ Fruits.Red => "The Fruits is red", Fruits.Green => "The Fruits is green", Fruits.Blue => "The Fruits is blue" }; System.Console.WriteLine(message); Console.ReadLine(); } }
The Fruits is green The Fruits is green
以上がC# 8.0 で新しい Switch 式を作成するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。