Enum TokenType
This enumeration is used in string parsing functions, a string is divided in tokens, each token can represent operators, symbols...
Namespace: Reportman.Reporting
Assembly: Reportman.Reporting.dll
Syntax
public enum TokenType
Fields
| Name | Description |
|---|---|
| Comment | The token is a code commnet |
| Decimal | The token is a decimal value |
| Double | The token is a dobule value |
| Eof | There is no more tokens to parse so current token is End of File |
| Integer | The token is an integer |
| Operator | The token is an operator (sum,multiply...) |
| String | The token is a string |
| Symbol | The token is an identifier, usually a variable or function name |