public KeyValueString(KeyValueString kvs) : this(kvs.Key, kvs.Value) { }
public bool Equals(KeyValueString other) { return(string.Equals(Key, other.Key) && string.Equals(Value, other.Value)); }
public bool Equals(KeyValueString other) { return(Key == other.Key && Value == other.Value); }