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

Add() public method

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

Same methods

ImageList.ImageCollection::Add ( Image value ) : void