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

this() public méthode

public this ( string key ) : ToolStripItem
key string
Résultat ToolStripItem
		public virtual ToolStripItem this[string key] {
			get {
				foreach (ToolStripItem tsi in this)
					if (tsi.Name == key)
						return tsi;

				return null;
			}
		}
		#endregion

Same methods

ToolStripItemCollection::this ( int index ) : ToolStripItem
ToolStripItemCollection::this ( int index ) : objectIList.System.Drawing