System.Windows.Forms.ListBox.ObjectCollection.Remove C# (CSharp) 메소드

Remove() 공개 메소드

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

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