Exemplo n.º 1
0
 ///<exclude/>
 public bool Equals(Float32 other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(other.data.Equals(data));
 }
Exemplo n.º 2
0
 ///<exclude/>
 public bool Equals(Float32 other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return other.data.Equals(data);
 }