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
\"\"
String.Empty is a readonly field while "" is a const. This means you can't use String.Empty in a switch statement because it is not a constant.
""