System.Windows.Forms.ListBox.IntegerCollection.IList C# (CSharp) Метод

IList() приватный Метод

private IList ( object value ) : void
value object
Результат void
			void IList.Remove (object value)
			{
				int? intValue = value as int?;
				if (!intValue.HasValue)
					throw new ArgumentException ("value");

				Remove (intValue.Value);
			}

Same methods

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