Equivalenti di .NET Framework a tipi nativi C++ (C++/CLI)
Nella tabella riportata di seguito sono elencate le parole chiave per i tipi incorporati di Visual C++, che rappresentano alias di tipi già definiti dello spazio dei nomi System.
Tipo Visual C++ |
Tipo .NET Framework |
---|---|
bool |
System.Boolean |
signed char (per ulteriori informazioni, vedere /J) |
System.SByte |
unsigned char |
System.Byte |
wchar_t |
System.Char |
double e long double |
System.Double |
float |
System.Single |
int, signed int, long e signed long |
System.Int32 |
unsigned int e unsigned long |
System.UInt32 |
__int64 e signed __int64 |
System.Int64 |
unsigned __int64 |
System.UInt64 |
short e signed short |
System.Int16 |
unsigned short |
System.UInt16 |
void |
System.Void |