06/12/04 17:37:49
>>186-188
ほかの方法があったか。
色々考え出したら止まらなくって困ってたとこだった。
役に立てなくてすまない。
#include <string>
#include <iostream>
int main(array<System::String ^> ^args)
{
std::string A="BMP",B="Wav";
std::string C="";
C=A+'\0'+B+'\0'+'\0';
std::cout<<C<<std::endl;
//std::cout<<C.c_str()<<std::endl;
return 0;
}
こういう感じの想定してた。@VC2005EE