public bool Equals(WString other) { if (WrappedValue == null) { return(other.WrappedValue == null ? true : false); } return(WrappedValue.Equals(other.WrappedValue)); }
public bool Equals(WDecimal other) { return(WrappedValue.Equals(other.WrappedValue)); }
public bool Equals(WDateTime other) { return(WrappedValue.Equals(other.WrappedValue)); }
public bool Equals(WUInt32 other) { return(WrappedValue.Equals(other.WrappedValue)); }
public bool Equals(uint other) { return(WrappedValue.Equals(other)); }
public bool Equals(WGuid other) { return(WrappedValue.Equals(other.WrappedValue)); }
public bool Equals(double other) { return(WrappedValue.Equals(other)); }
public bool Equals(long other) { return(WrappedValue.Equals(other)); }
public bool Equals(WTimeSpan other) { return(WrappedValue.Equals(other.WrappedValue)); }
public bool Equals(char other) { return(WrappedValue.Equals(other)); }