System.Windows.Forms.ListView.SelectedListViewItemCollection.this C# (CSharp) Méthode

this() public méthode

public this ( string key ) : System.Windows.Forms.ListViewItem
key string
Résultat System.Windows.Forms.ListViewItem
			public virtual ListViewItem this [string key] {
				get {
					int idx = IndexOfKey (key);
					if (idx == -1)
						return null;

					return this [idx];
				}
			}

Same methods

ListView.SelectedListViewItemCollection::this ( int index ) : System.Windows.Forms.ListViewItem
ListView.SelectedListViewItemCollection::this ( int index ) : objectIList.System.Collections