In .NET, what is the difference between String.Empty and \"\", and are they interchangable, or is there some underlying reference or Localization i
String.Empty
\"\"
The above answers are technically correct, but what you may really want to use, for best code readability and least chance of an exception is String.IsNullOrEmpty(s)