I'm confused with Unicode. Can I read a unicode text or ASCII text file by using same codes below. If not, how can I do that? (compiler, vc++ 2005)
CFile fDict;
CArchive arDict(&fDict, CArchive::load) ;
CString dictLine = _T("");
while(arDict.Re adString(dictLi ne))
{
...
}
CFile fDict;
CArchive arDict(&fDict, CArchive::load) ;
CString dictLine = _T("");
while(arDict.Re adString(dictLi ne))
{
...
}
Comment