Possible Duplicates:
In C#, should I use string.Empty or String.Empty or “” ? What is the difference between String.Empty and “”
Should I use:
- string.Empty
- String.Empty
- ""
wh开发者_如何学编程en I want to return an empty string from a method (or anywhere else for that matter)
String.Empty & string.Empty are exactly the same.
精彩评论