C# 宣告變數時,型別帶”?”(問號),表示變數可接受null值
C# 宣告變數時,型別帶”?”(問號),表示變數可接受null值
資料來源: https://dotblogs.com.tw/charleen/2017/12/26/100359
int i2=null; //not ok int? i4=null; //ok bool flag1 = null; //not ok bool? flag2 = null; //ok
C# 宣告變數時,型別帶”?”(問號),表示變數可接受null值
資料來源: https://dotblogs.com.tw/charleen/2017/12/26/100359
int i2=null; //not ok int? i4=null; //ok bool flag1 = null; //not ok bool? flag2 = null; //ok