Design Pattern Examples
Overview of object-oriented design patterns
State_Constants Class Reference

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...

Collaboration diagram for State_Constants:
Collaboration graph

Static Public Attributes

const char EOF = (char)0xff
 Indicates End-of-file (no more data available).
 

Detailed Description

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.

Member Data Documentation

◆ EOF


The documentation for this class was generated from the following file: