public void GetMethodImpl(int rid, out MethodImplRow row)
		{
			_accessor.Position = GetTableRowOffset(MetadataTableType.MethodImpl, rid);
			row.Class = ReadValue(_tableRowIndexSize4[MetadataTableType.TypeDef]);
			row.MethodBody = ReadValue(_codedTokenDataSize4[7]);
			row.MethodDeclaration = ReadValue(_codedTokenDataSize4[7]);
		}
 void IMetadata.GetMethodImpl(int rid, out MethodImplRow row)
 {
     _tables.MethodImplTable.Get(rid, out row);
 }