Équivalents .NET Framework des types natifs C++
Mise à jour : novembre 2007
Le tableau suivant répertorie les mots clés des types intégrés Visual C++ , qui constituent des alias des types prédéfinis de l'espace de noms System.
Type Visual C++ |
Type .NET Framework |
---|---|
bool |
System.Boolean |
signed char (voir /J pour plus d'informations) |
System.SByte |
unsigned char |
System.Byte |
wchar_t |
System.Char |
double et long double |
System.Double |
float |
System.Single |
int, signed int, long et signed long |
System.Int32 |
unsigned int et unsigned long |
System.UInt32 |
__int64 et signed __int64 |
System.Int64 |
unsigned __int64 |
System.UInt64 |
short et signed short |
System.Int16 |
unsigned short |
System.UInt16 |
void |
System.Void |