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

IList() private method

private IList ( object item ) : int
item object
return int
			int IList.Add (object item)
			{
				int? intValue = item as int?;
				if (!intValue.HasValue)
					throw new ArgumentException ("item");
				return Add (intValue.Value);
			}

Same methods

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