System.Windows.Forms.ImageList.ImageCollection.this C# (CSharp) Method

this() private method

private this ( int index ) : objectIList.System
index int
return objectIList.System
            object IList.this[int index]
            {
                get
                {
                    return this[index];
                }
                set
                {
                    if (value is Image)
                    {
                        this[index] = (Image)value;
                        return;
                    }
                }
            }

Same methods

ImageList.ImageCollection::this ( int index ) : Image
ImageList.ImageCollection::this ( string key ) : Image