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

this() public method

public this ( string key ) : string
key string
return string
        public override string this[ string key ]

        {

            get

            {

                if ( key == null )

                {

                    throw new ArgumentNullException ( "key" );

                }



                return (string) contents[ key ];

            }

            set

            {

                if ( key == null )

                {

                    throw new ArgumentNullException ( "key" );

                }



                contents[ key ] = value;

            }

        }