Method IsValidChar
IsValidChar(char)
Checks whether the specified char is valid for the input. This method doesn't perform checks on char category, use IsValid(char) to check both char and it's category.
public override bool IsValidChar(char ch)
Parameters
chcharCharacter to check.
Returns
- bool
trueif char is valid for the input;falseotherwise.