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

Add() public method

public Add ( Image value ) : void
value System.Drawing.Image
return void
            public void Add(Image value)
            {
                _items.Add(new ImageInfo(string.Empty, value));
            }

Same methods

ImageList.ImageCollection::Add ( string key, Image image ) : void