void IMetadata.GetPropertyMap(int rid, out PropertyMapRow row)
 {
     _tables.PropertyMapTable.Get(rid, out row);
 }
		public void GetPropertyMap(int rid, out PropertyMapRow row)
		{
			_accessor.Position = GetTableRowOffset(MetadataTableType.PropertyMap, rid);
			row.Parent = ReadValue(_tableRowIndexSize4[MetadataTableType.TypeDef]);
			row.PropertyList = ReadValue(_tableRowIndexSize4[MetadataTableType.Property]);
		}