2012年5月3日 星期四

if then else ?用法


1. int? number;
2. txtName.Text.Trim().Length == 0 ? null : txtName.Text.Trim()
3 .a??0

第一種的意思
?(單問號),是System.Nullable<T>的縮寫形式,可null類型。

第二種的意思
? 為三元運算符,在上面例子中,就等於是
1if (txtName.Text.Trim().Length == 0)
2{
3    取 null;
4}
5else
6{
7    取 txtName.Text.Trim();
8}

第三種的意思
??(雙問號),意思是取所賦值??左邊的,如果左邊為null,取所賦值??右邊的,所以上面例子等於是
1if (a==null)
2     {
3        取 0;       
4     }
5     else
6     {
7        取 a;
8     }

沒有留言:

張貼留言