Method IsDelimiter
IsDelimiter(string, int)
When implemented by a class, indicates whether the character at the specific position of given string is a delimiter character.
bool IsDelimiter(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 delimiter; otherwise false.
IsDelimiter(int, int)
When implemented by a class, indicates whether the character at the specific position of the string collection is delimiter character.
bool IsDelimiter(int index, int pos)
Parameters
indexintThe index of line in which character should be tested.
posintThe index of character in the specific string.
Returns
- bool
True if specified character is delimiter; otherwise false.
IsDelimiter(char)
When implemented by a class, indicates whether the specified character is delimiter character.
bool IsDelimiter(char ch)
Parameters
chcharThe char value that should be tested.
Returns
- bool
True if specified character is delimiter; otherwise false.