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;
It doesn't matter - they are exactly the same thing. However, the main thing is that you must be consistent
p.s. I struggle with this sort of "whats the right thing" all the time.