Checks the Unicode category of the given character and determines whether it is a whitespace or punctuation character.
public static void CheckUnicodeCategory(this char c, scoped out bool space, scoped out bool punctuation)
The character to check.
Output parameter indicating whether the character is a whitespace character.
Output parameter indicating whether the character is a punctuation character.