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

Add() public method

public Add ( string key, string value ) : void
key string
value string
return void
        public override void Add ( string key, string value )

        {

            if ( key == null )

            {

                throw new ArgumentNullException ( "key" );

            }



            contents.Add ( key , value );

        }