System.Collections.Specialized.CaseSensitiveStringDictionary.ContainsKey C# (CSharp) Méthode

ContainsKey() public méthode

public ContainsKey ( string key ) : bool
key string
Résultat bool
        public override bool ContainsKey ( string key )

        {

            if ( key == null )

            {

                throw new ArgumentNullException ( "key" );

            }



            return contents.ContainsKey ( key );

        }