Ejemplo n.º 1
0
 public bool Equals(IntegerValue other)
 {
     return(other != null && _dataValue.IsReal && _dataValue.Real == other.ToDouble());
 }
Ejemplo n.º 2
0
 public ComplexValue(IntegerValue realValue)
 {
     _dataValue.Real = realValue.ToDouble();
 }