Exemplo n.º 1
0
 public KeyValueString(KeyValueString kvs)
     : this(kvs.Key, kvs.Value)
 {
 }
Exemplo n.º 2
0
 public bool Equals(KeyValueString other)
 {
     return(string.Equals(Key, other.Key) && string.Equals(Value, other.Value));
 }
Exemplo n.º 3
0
 public bool Equals(KeyValueString other)
 {
     return(Key == other.Key && Value == other.Value);
 }