Method IsWhitespace
IsWhitespace(string, int)
When implemented by a class, indicates whether the character at the specific position of given string is a whitespace character.
bool IsWhitespace(string s, int pos)
Parameters
sstringThe string in which character should be tested.
posintThe index of character in the given string.
Returns
- bool
True if specified character is whitespace; otherwise false.