///<exclude/> public bool Equals(Float64 other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(other.data.Equals(data)); }
///<exclude/> public bool Equals(Float64 other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return other.data.Equals(data); }