System.Data.TableStructureCollection.this C# (CSharp) Метод

this() публичный Метод

public this ( string name ) : TableStructure
name string
Результат TableStructure
		public TableStructure this [string name] {
			get {
				foreach (TableStructure ts in List)
					if (ts.Table.TableName == name)
						return ts;
				return null;
			}
		}
	}

Same methods

TableStructureCollection::this ( int i ) : TableStructure
TableStructureCollection