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