-
Notifications
You must be signed in to change notification settings - Fork 1
CSharp
f7q edited this page Apr 14, 2018
·
4 revisions
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;
}
Copyright (C) 2016 f7q All Rights Reserved.