Home [C# 筆記] null 和 ""
Post
Cancel

[C# 筆記] null 和 ""

null""不同,
null 沒有佔存空間,沒有值,
"" 有佔存空間,存了一個空。

1
2
string str = null; //沒有開空間
string str = "";  //有開空間

等於null,等於空,兩者不一樣…

This post is licensed under CC BY 4.0 by the author.