Microsoft.ManagementConsole.PropertyPageCollection.this C# (CSharp) Method

this() public method

public this ( int index ) : PropertyPage
index int
return PropertyPage
        public PropertyPage this[int index]
        {
            get
            {
                return (PropertyPage) base.List[index];
            }
            set
            {
                base.List[index] = value;
            }
        }
    }