System.Collections.Specialized.CaseSensitiveStringDictionary.ContainsKey C# (CSharp) Method

ContainsKey() public method

public ContainsKey ( string key ) : bool
key string
return bool
        public override bool ContainsKey ( string key )

        {

            if ( key == null )

            {

                throw new ArgumentNullException ( "key" );

            }



            return contents.ContainsKey ( key );

        }