C#知識系列
C# 6的新語法糖,專門是取變數名稱
來個小sample
string test ="ya";
Console.WriteLine(nameof(test));
//印出test
範例二,比較常用的是在Exception的時候
string firstName = null;
if (firstName == null)
{
throw new ArgumentNullException($"{nameof(firstName)} 不能null");
}
元哥的筆記