asp.net(c#)中String.Empty、NULL、"" 三者到底有啥區別和聯繫?

開門見山,首先看下面代碼,你認爲結果分別是什麼? string str = string.Empty; string str1 = ""; string str2 = null; bool t = string.IsNullOrEmpty(str); bool t1 = string.IsNullOrEmpty(str1); bool t2 = string.IsNullOrEmpty(str2)
相關文章
相關標籤/搜索