System.Data.TableMappingCollection.this C# (CSharp) Method

this() public method

public this ( string name ) : TableMapping
name string
return TableMapping
		public TableMapping this [string name] {
			get {
				foreach (TableMapping map in List)
					if (map.Table.TableName == name)
						return map;
				return null;
			}
		}
	}
TableMappingCollection