C++ 네이티브 형식에 해당하는 .NET Framework(C++/CLI)
다음 표에서는 C++의 기본 제공 형식에 대한 키워드를 보여 줍니다. 이러한 키워드는 System 네임스페이스에 미리 정의된 형식의 별칭입니다.
Visual C++ 형식 |
.NET Framework 형식 |
---|---|
bool |
System.Boolean |
signed char(자세한 내용은 /J를 참조하십시오.) |
System.SByte |
unsigned char |
System.Byte |
wchar_t |
System.Char |
double 및 long double |
System.Double |
float |
System.Single |
int, signed int, long 및 signed long |
System.Int32 |
unsigned int 및 unsigned long |
System.UInt32 |
__int64 및 signed __int64 |
System.Int64 |
unsigned __int64 |
System.UInt64 |
short 및 signed short |
System.Int16 |
unsigned short |
System.UInt16 |
void |
System.Void |