System.Net.PathList.this C# (CSharp) Method

this() public method

public this ( string s ) : object
s string
return object
        public object this[string s] {
            get {
                return m_list[s];
            }
            set {
                m_list[s] = value;
            }
        }