Tokenizer<TSymbol,TSymbolType>.CharOrWhiteSpace(Char) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a function delegate, that accepts a character parameter and returns a value that indicates whether the character parameter is equal to specified character or white space.
protected Func<char,bool> CharOrWhiteSpace(char character);
member this.CharOrWhiteSpace : char -> Func<char, bool>
Protected Function CharOrWhiteSpace (character As Char) As Func(Of Char, Boolean)
Parameters
- character
- Char
The character used to compare.
Returns
A function delegate.