在vc6中,代码
CString strData;
int count=3;
strData = strData.Delete(0,count);//error
完美执行,但在 vc9 中给出错误 C2593: 'operator =' is ambiguous
我可以只用吗
strData.Delete(0,count);
在vc6中,代码
CString strData;
int count=3;
strData = strData.Delete(0,count);//error
完美执行,但在 vc9 中给出错误 C2593: 'operator =' is ambiguous
我可以只用吗
strData.Delete(0,count);