예제 #1
0
            public override bool ContainsKey(string key)
            {
                foreach (string updatedKey in UpdatedKeys)
                {
                    if (updatedKey.Equals(key))
                    {
                        return(true);
                    }
                }

                return(Map.containsKey(key));
            }
예제 #2
0
 public override bool ContainsKey(string key)
 {
     return(Map.containsKey(key));
 }