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

this() public method

public this ( int index ) : Image
index int
return Image
        public Image this[int index]
        {
            get
            {
                return this._innerList.Images[index];
            }
            set
            {
                this._innerList.Images[index] = value;
                this.Notify();
            }
        }