System.Windows.Forms.ListBox.IntegerCollection.IList C# (CSharp) Method

IList() private method

private IList ( object item ) : bool
item object
return bool
			bool IList.Contains (object item)
			{
				int? intValue = item as int?;
				if (!intValue.HasValue)
					return false;
				return Contains (intValue.Value);
			}

Same methods

ListBox.IntegerCollection::IList ( object item ) : int
ListBox.IntegerCollection::IList ( ) : void
ListBox.IntegerCollection::IList ( int index ) : void
ListBox.IntegerCollection::IList ( int index, object value ) : void
ListBox.IntegerCollection::IList ( object value ) : void