Constructor Transition
Transition(Int32, State)
Constructs a new singleton interval transition.
Declaration
public Transition(int c, State to)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | c | Transition codepoint. |
State | to | Destination state. |
Transition(Int32, Int32, State)
Constructs a new transition. Both end points are included in the interval.
Declaration
public Transition(int min, int max, State to)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | min | Transition interval minimum. |
System.Int32 | max | Transition interval maximum. |
State | to | Destination state. |