Hello all! I am using MFC with C++ trying to simply add one array to another with the code: totalBalance[count] = totalBalance[count] + payment[count]; but I'm getting the error:
Code:
Error	1	error C2676: binary '+' : 'System::Double ^' does not define this operator or a conversion to a type acceptable to the predefined operator	c:\scalderon\mfc windows\ch01\checkingaccount\checkingaccount\Form1.h	309
Have no idea why it wont work. Any input would be great. Thanks!