我在显示由一些文本和一个整数组成的消息时遇到问题
这是我的代码:
int integerNumberOfImportantAppointments = calCalendar.getNumberOfImportantAppointments();
if (integerNumberOfImportantAppointments > 0)
{
ShowMessage("You have " + integerNumberOfImportantAppointments + " important appointments. Do you wish to view them?");
}
我收到以下错误:E2085 无效的指针添加
我可以帮我解决这个问题吗?
谢谢