All functions return CString, this is a MFC code and must compile in 32 & 64 bits.
Currently I'm using
CString sURI = GetURL(); sURI += GetMethod(); sURI += "?"; sURI += GetParameters();
Exists any manner to do the same like:
CString sURI = GetURL() + GetMethod() + "?" + GetParameters();