コード例 #1
0
ファイル: StringExt.cs プロジェクト: LordEnigma/UO
 public KeyValueString(KeyValueString kvs)
     : this(kvs.Key, kvs.Value)
 {
 }
コード例 #2
0
ファイル: StringExt.cs プロジェクト: LordEnigma/UO
 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);
 }