Ejemplo n.º 1
0
 /// <summary>
 /// True if the step is contained in the active steps set.
 /// Used while checking the sfc transitions.
 /// </summary>
 public bool IsStepActive(int key)
 {
     return(ActiveSteps.Contains(GetStepFromMapKey(key)));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// True if the step is contained in the active steps set.
 /// Used while checking the sfc transitions.
 /// </summary>
 public bool IsStepActive(SfcStep step)
 {
     return(ActiveSteps.Contains(step));
 }