/// <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))); }
/// <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)); }