public void GetProperty(int rid, out PropertyRow row)
		{
			_accessor.Position = GetTableRowOffset(MetadataTableType.Property, rid);
			row.Flags = _accessor.ReadUInt16();
			row.Name = ReadValue(_stringHeapOffsetSize4);
			row.Type = ReadValue(_blobHeapOffsetSize4);
		}
 void IMetadata.GetProperty(int rid, out PropertyRow row)
 {
     _tables.PropertyTable.Get(rid, out row);
 }