public void GetMethod(int rid, out MethodRow row)
		{
			_accessor.Position = GetTableRowOffset(MetadataTableType.MethodDef, rid);
			row.RVA = (uint)_accessor.ReadInt32();
			row.ImplFlags = _accessor.ReadUInt16();
			row.Flags = _accessor.ReadUInt16();
			row.Name = ReadValue(_stringHeapOffsetSize4);
			row.Signature = ReadValue(_blobHeapOffsetSize4);
			row.ParamList = ReadValue(_tableRowIndexSize4[MetadataTableType.Param]);
		}
 void IMetadata.GetMethod(int rid, out MethodRow row)
 {
     _tables.MethodTable.Get(rid, out row);
 }