コード例 #1
0
        public void SetOneValueTest()
        {
            DoubleKeyDictionary <int, string, string> map = CreateDictionary();

            map.SetOneValue(1, "P");
            map.GetOneValue(1).AreEqualWith("P");
            map.GetTwoValue("a").AreEqualWith("P");
        }