System.Windows.Forms.ListBox.IntegerCollection.IList C# (CSharp) 메소드

IList() 개인적인 메소드

private IList ( object item ) : bool
item object
리턴 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