Ejemplo n.º 1
0
 public bool Equals(WString other)
 {
     if (WrappedValue == null)
     {
         return(other.WrappedValue == null ? true : false);
     }
     return(WrappedValue.Equals(other.WrappedValue));
 }
Ejemplo n.º 2
0
 public bool Equals(WDecimal other)
 {
     return(WrappedValue.Equals(other.WrappedValue));
 }
Ejemplo n.º 3
0
 public bool Equals(WDateTime other)
 {
     return(WrappedValue.Equals(other.WrappedValue));
 }
Ejemplo n.º 4
0
 public bool Equals(WUInt32 other)
 {
     return(WrappedValue.Equals(other.WrappedValue));
 }
Ejemplo n.º 5
0
 public bool Equals(uint other)
 {
     return(WrappedValue.Equals(other));
 }
Ejemplo n.º 6
0
 public bool Equals(WGuid other)
 {
     return(WrappedValue.Equals(other.WrappedValue));
 }
Ejemplo n.º 7
0
 public bool Equals(double other)
 {
     return(WrappedValue.Equals(other));
 }
Ejemplo n.º 8
0
 public bool Equals(long other)
 {
     return(WrappedValue.Equals(other));
 }
Ejemplo n.º 9
0
 public bool Equals(WTimeSpan other)
 {
     return(WrappedValue.Equals(other.WrappedValue));
 }
Ejemplo n.º 10
0
 public bool Equals(char other)
 {
     return(WrappedValue.Equals(other));
 }