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

this() public method

public this ( string key ) : Image
key string
return System.Drawing.Image
            public Image this[string key]
            {
                get
                {
                    var item = _items.Find(x => x.Key == key);
                    if (item == null) return null;
                    return item.Image;
                }
            }

Same methods

ImageList.ImageCollection::this ( int index ) : Image
ImageList.ImageCollection::this ( int index ) : objectIList.System