AMDGws + boost::lexical_cast<std::wstring>(i)?
Lloyd wrote:
What is the best way to concatanate an integer to wstring?
for example
===========
std::wstring ws=L"str";
for(int i=0;i<10;++i)
{
cout<<ws+i;
}
The output could be
str1
str2
....
str9
In Christ,
Steven Watanabe