System.Windows.Forms.ListView.ColumnHeaderCollection.IList C# (CSharp) Method

IList() private method

private IList ( object value ) : bool
value object
return bool
			bool IList.Contains (object value)
			{
				if (! (value is ColumnHeader)) {
					throw new ArgumentException ("Not of type ColumnHeader", "value");
				}

				return this.Contains ((ColumnHeader) value);
			}

Same methods

ListView.ColumnHeaderCollection::IList ( object value ) : int
ListView.ColumnHeaderCollection::IList ( int index, object value ) : void
ListView.ColumnHeaderCollection::IList ( object value ) : void