State Classes
Introduction
Class Names
public class VariableState
{
public string Name;
public static VariableState State1 = new VariableState()
{
Name = "State1",
}
;
public static VariableState State2 = new VariableState()
{
Name = "State2",
}
;
}Last updated
Was this helpful?