Is there any standard C# variable for whitespace?
Something similar to Environment.NewLine
. I didn't find anything online.
I want to find the index of a whitespace in a given string.
For example
I can do string.indexOf(" ")
But I was wondering if there is anything in-built variable in C#.