随笔分类 -  MFC

摘要:CFile testFile(_T("test.dat"), CFile::modeWrite);CArchive arSave(&testFile, CArchive::store);arSave << _T("SoBe") << 6655;arSave.Close();testFile.Close();CString str = _T("");int n = 0;testFile.Open(_T("test.dat"), CFile::modeRead);CArchive arL 阅读全文
posted @ 2011-03-14 14:39 qbingo 阅读(1567) 评论(2) 推荐(1)