System.Windows.Forms.ListBox.ObjectCollection.IndexOf C# (CSharp) Method

IndexOf() public method

public IndexOf ( object value ) : int
value object
return int
			public int IndexOf (object value)
			{
				if (value == null)
					throw new ArgumentNullException ("value");

				return object_items.IndexOf (value);
			}