Exemplo n.º 1
0
 public static bool AutoThrow(this VslSSStatus status, [CallerFilePath] string file = null, [CallerLineNumber] int?line = null)
 => !status.IsError() ? false : throw new Exception($"{file} line {line}: VSL SS Error Code {status}");
Exemplo n.º 2
0
 public static bool IsError(this VslSSStatus status)
 => status != VslSSStatus.VSL_SS_OK;