ComplexNumberFormatInfo(ComplexNumberFormatEnum format)
 {
     if (!Enum.IsDefined(typeof(ComplexNumberFormatEnum), format))
     {
         throw new ArgumentOutOfRangeException();
     }
     currentComplexFormat = format;
 }
 public bool Equals(ComplexNumberFormatEnum other)
 {
     return(currentComplexFormat == other);
 }