「C++とC++/CLIの型対応表」の編集履歴(バックアップ)一覧に戻る

C++とC++/CLIの型対応表 - (2007/04/09 (月) 16:13:34) のソース

|BGCOLOR(#52A2C5):CENTER:SIZE(14):C++型 | C++/CLI型 |
| bool | System::Boolean |
| char | Sstem::SByte もしくは System::Byte (IsSignUnspecifiedByte?のオプションによる) |
| signed char | System::SByte |
| unsigned char	| System::Byte |
| short | System::Int16 |
| unsigned short | System::UInt16 |
| int | System::Int32 |
| unsigned int | System::UInt32 |
| long | System::Int32 (IsLong?のオプションによる) |
| unsigned long | System::UInt32 (IsLong? のオプションによる) |
| long long | System::Int64 |
| unsigned long long | System::UInt64 |
| float | System::Single |
| double | System::Double |
| long double | System::Double (IsLong? オプションによる) |
| wchar_t | System::Char |