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

Add() public méthode

public Add ( string key, string value ) : void
key string
value string
Résultat void
        public override void Add ( string key, string value )

        {

            if ( key == null )

            {

                throw new ArgumentNullException ( "key" );

            }



            contents.Add ( key , value );

        }