2005-07-01から1日間の記事一覧

C++/CLIの型

今月はC++/CLIに力を入れることにして、先ずは型から。charがSByteだったりlongがInt32だったりするのに違和感がある。C#に毒されているなぁ。(^^; #include "stdafx.h" using namespace System; int main(array<System::String ^> ^args) { // C#のtypeof(int)はC++/CLIではin</system::string>…

const char* -> String

昨日の日記でconst char*からStringへの変換にPtrToStringAnsiを使いましたが、考えてみたらStringのコンストラクタはconst char*を取りましたよね。(^^; #include "stdafx.h" using namespace System; using namespace System::Runtime::InteropServices; v…