public bool Equals(SetValueReport other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(Equals(other.Type, Type) && Equals(other.Value, Value)); }
public void SetValue(SetValueReport report) { }
public bool Equals(SetValueReport other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return Equals(other.Type, Type) && Equals(other.Value, Value); }