1

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
 - ""

when I want to return an empty string from a method (or anywhere else for that matter)

Community
  • 1
  • 1
Nick
  • 7,475
  • 18
  • 77
  • 128
  • Dupliacte http://stackoverflow.com/questions/151472/what-is-the-difference-between-string-empty-and – johnc Jan 28 '10 at 00:26

1 Answers1

2

String.Empty & string.Empty are exactly the same.

John Boker
  • 82,559
  • 17
  • 97
  • 130