Example #1
0
 public static string ConvertBooleanOperationToString(LogicalOperator booleanOperation)
 {
     if (!Enum.IsDefined(typeof(LogicalOperator), booleanOperation))
     {
         throw new ArgumentException("Unsupported boolead operation.", nameof(booleanOperation));
     }
     return(booleanOperation.GetDescription());
 }