Possible Duplicate:
What is the difference between String.Empty and “”
Is "" equivalent to String.Empty?
Which is preferred for initializing string values?
Is Which is preferred for initializing string values? |
||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Use Use |
|||||||||||||
|
|
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) |
|||||||||||
|
|
Yes. And String.Empty, but please don't worry about it. |
|||
|
|
It is considered better practise to use string.Empty, however they are effectively equal. They are not the same as null, however. |
|||
|
|
|
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 |
|||||
|
|
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 . |
|||||||
|
|
The answer you are looking for is here. use String.Empty |
|||
|
|