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

this() public method

public this ( String name ) : String
name String
return String
        public String this[String name]
        {
            get
            {
                return Get(name);
            }

            set
            {
                Set(name, value);
            }
        }

Same methods

NameValueCollection::this ( int index ) : String
NameValueCollection::this ( int index ) : string
NameValueCollection::this ( string name ) : string