Пример #1
0
 public KeyValueString(KeyValueString kvs)
     : this(kvs.Key, kvs.Value)
 {
 }
Пример #2
0
 public bool Equals(KeyValueString other)
 {
     return(string.Equals(Key, other.Key) && string.Equals(Value, other.Value));
 }
Пример #3
0
 public bool Equals(KeyValueString other)
 {
     return(Key == other.Key && Value == other.Value);
 }