您的位置:首页 > 编程语言 > C语言/C++

c++与c#类型对照

2016-01-22 00:47 302 查看
//c++:HANDLE(void   *)          ----   c#:System.IntPtr       

//c++:Byte(unsigned   char)     ----    c#:System.Byte        

//c++:SHORT(short)              ----    c#:System.Int16        

//c++:WORD(unsigned   short)    ----    c#:System.UInt16       

 //c++:INT(int)                 ----    c#:System.Int16       

//c++:INT(int)                  ----    c#:System.Int32        

//c++:UINT(unsigned   int)      ----    c#:System.UInt16       

//c++:UINT(unsigned   int)      ----    c#:System.UInt32       

//c++:LONG(long)                ----    c#:System.Int32        

//c++:ULONG(unsigned   long)    ----    c#:System.UInt32        

//c++:DWORD(unsigned   long)    ----    c#:System.UInt32        

//c++:DECIMAL                   ----    c#:System.Decimal        
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: