Ejemplo n.º 1
0
 public static LaundryMachineStateCode ValueOrErrorIfNDef(this LaundryMachineStateCode code) =>
 code.IsStateDefined() ? code : LaundryMachineStateCode.Error;
Ejemplo n.º 2
0
 public static LaundryMachineStateCode ValueOrThrowIfNDef(this LaundryMachineStateCode code) =>
 code.IsStateDefined()
         ? code
         : throw new InvalidEnumArgumentException(nameof(code), (int)code, typeof(LaundryMachineStateCode));