I'm having a problem appending a BYTE array to a CString.
error C2679: binary '+=' : no operator found which takes a right-hand operand of type 'BYTE [17]' (or there is no acceptable conversion)
This is the error I am getting. It's been over 8 years since I last programmed in C++, and I can't seem to find what I need on google.
Also, this is attempting to be compiled with Unicode support.
Code:
BYTE b[17];
.
.
.
CString& string;
.
.
.
string += b; // Error line
error C2679: binary '+=' : no operator found which takes a right-hand operand of type 'BYTE [17]' (or there is no acceptable conversion)
This is the error I am getting. It's been over 8 years since I last programmed in C++, and I can't seem to find what I need on google.
Also, this is attempting to be compiled with Unicode support.