Skip to content
f7q edited this page Apr 14, 2018 · 4 revisions

Note

チュートリアル

WEB実行

string @if = "予約語を変数として使う";
System.Console.WriteLine(nameof(@if) + $"={@if}");
System.Console.WriteLine(null ?? "nullだったら文字を返す");

名前付き引数

bool Exists(int id)
{
  return this.IsExists(test: "aaa");
}

bool IsExists(int id = 10, string test)
{
  return false;
}
Clone this wiki locally