System.Windows.Forms.ListBox.SelectedObjectCollection.Remove C# (CSharp) Méthode

Remove() public méthode

public Remove ( object value ) : void
value object
Résultat 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