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

IList() private method

private IList ( object value ) : int
value object
return int
            int IList.Add(object value)
            {
                if (value is Image)
                {
                    this.Add((Image)value);
                    return this.Count - 1;
                }

                return -1;
            }

Same methods

ImageList.ImageCollection::IList ( object image ) : bool
ImageList.ImageCollection::IList ( int index, object value ) : void
ImageList.ImageCollection::IList ( object image ) : void