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

Remove() public method

public Remove ( string key ) : void
key string
return void
        public override void Remove ( string key )

        {

            if ( key == null )

            {

                throw new ArgumentNullException ( "key" );

            }



            contents.Remove ( key );

        }