Represents constants used in the State machine. This is needed in a separate class because 1) C# requires constants to be defined inside a class or struct and 2) the constant is needed across multiple classes. More...
Static Public Attributes | |
const char | EOF = (char)0xff |
Indicates End-of-file (no more data available). | |
Represents constants used in the State machine. This is needed in a separate class because 1) C# requires constants to be defined inside a class or struct and 2) the constant is needed across multiple classes.
In this case, only EOF is needed.
Definition at line 46 of file State_Class.cs.
|
static |
Indicates End-of-file (no more data available).
Definition at line 51 of file State_Class.cs.
Referenced by StateContext_Class.GetNextCharacter(), State_NormalText.GoNext(), State_DoubleQuotedText.GoNext(), State_SingleQuotedText.GoNext(), State_EscapedDoubleQuoteText.GoNext(), State_EscapedSingleQuoteText.GoNext(), State_StartComment.GoNext(), State_LineComment.GoNext(), State_BlockComment.GoNext(), State_EndBlockComment.GoNext(), and StateContext_Class.OutputCharacter().