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