I'd like to create an array of strings that I can use in a loop to fill a combo box and wondered what the best way is and to initialise?
this won't complie
std::vector<std::string> myStrings(_T(
"s1"), _T("s2"), _T("s3"
));
I'd like to create an array of strings that I can use in a loop to fill a combo box and wondered what the best way is and to initialise?
this won't complie
std::vector<std::string> myStrings(_T(
"s1"), _T("s2"), _T("s3"
));