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