I wanted to know how to represent a whitespace character in C#. I found the empty string representation string.Empty. Is there anything like that that represent
string.Empty
You can always use Unicode character, for me personally this is the most clear solution:
var space = "\u0020"