Possible Duplicate:
What is the difference between String.Empty and “”
Is "" equivalent to String.Empty?
Which is preferred for initializing string values?
|
1
|
Is Which is preferred for initializing string values?
|
|||
|
closed as exact duplicate by David Basarab, Rich B, Henk Holterman, John Rasch, Welbog Jun 22 at 18:32 |
|
|
String.Empty because it is a static variable, rather than "" which has to create a new string, and null means that you must then set the string equal to a new instance of a string. (thanks for the correction) |
||||||||||
|
|
|
It is considered better practise to use string.Empty, however they are effectively equal. They are not the same as null, however. |
||
|
|
|
|
Yes. And String.Empty, but please don't worry about it. |
||
|
|
|
Use Use |
||||||||||
|
|
|
FROM http://msdn.microsoft.com/en-us/library/system.string.empty.aspx The value of this field is the zero-length string, "". In application code, this field is most commonly used in assignments to initialize a string variable to an empty string. To test whether the value of a string is String..::.Empty, use the IsNullOrEmpty method. |
||
|
|
|
|
They are equal . But String.Empty is constant . "" - is way of creating String . |
||||||
|
|
|
Use whichever you find most readable. I challenge anyone to find a realistic application where there's a significant performance difference... it just won't happen. However, different people find different approaches more readable. Personally, I'm a If you prefer EDIT: Just to allay some fears which might be induced by the claim that "" will create a new string... it may create a new string once (possibly per
You are guaranteed that |
||||
|
|
|
The answer you are looking for is here. use String.Empty |
||
|
|
|
|
null and empty are not equal.. |
||
|
|