Possible Duplicate:
What is the difference between String.Empty and “”
In C#, should I use string.Empty or String.Empty or “”?
Default string initialization: NULL or Empty?
I would like to know if there is a interest to initialize a string?
String value1 = String.Empty;
EDIT : My question is more Why should I initialize strings than choosing between "" or string.Empty