예제 #1
0
        public void RemoveOneTest()
        {
            DoubleKeyDictionary <int, string, string> map = CreateDictionary();

            map.RemoveOne(1);
            map.ContainsKeyOne(1).IsFalse();

            map.RemoveOne(10);
            map.ContainsKeyOne(10).IsFalse();
        }