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

Remove() 공개 메소드

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

				int idx = owner.items.IndexOf (value);
				if (idx == -1)
					return;

				owner.selected_indices.Remove (idx);
			}
#endif