CString转换为string

string CStringToString(CString strMFC)
{
    CStringA strA;
    strA = strMFC.GetBuffer(0);
    strMFC.ReleaseBuffer();

    string str;
    str = strA.GetBuffer(0);
    strA.ReleaseBuffer();

    return str;
}

 

posted @ 2016-06-20 14:55  平楚荒烟  阅读(1036)  评论(0)    收藏  举报