In C#, I want to initialize a string value with an empty string.
How should I do this? What is the right way, and why?
string willi = string.Empty;
I use the third, but of the other two the first seems less odd. string is an alias for String, but seeing them across an assignment feels off.