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

Remove() public method

public Remove ( object value ) : void
value object
return void
			public void Remove (object value)
			{
				if (value == null)
					return;

				int index = IndexOf (value);
				if (index != -1)
					RemoveAt (index);
			}