コード例 #1
0
ファイル: TestTreeDictionary.cs プロジェクト: wwb/lucenenet
 public void Choose()
 {
     dict.Add("YES", "NO");
     Assert.AreEqual(new KeyValuePair <string, string>("YES", "NO"), dict.Choose());
 }
コード例 #2
0
ファイル: Dictionary.cs プロジェクト: simonbosman/C5
 public void Choose()
 {
     dict.Add("YES", "NO");
     Assert.AreEqual(new System.Collections.Generic.KeyValuePair <string, string>("YES", "NO"), dict.Choose());
 }