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

ContainsKey() public method

public ContainsKey ( string key ) : bool
key string
return bool
            public bool ContainsKey(string key)
            {
                return _items.Find(x => x.Key == key) != null;
            }