CString转换为string时间:2023-03-09 07:41:37 string CStringToString(CString strMFC) { CStringA strA; strA = strMFC.GetBuffer(); strMFC.ReleaseBuffer(); string str; str = strA.GetBuffer(); strA.ReleaseBuffer(); return str; }