程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> c和c#托管與非托管代碼中變量對應

c和c#托管與非托管代碼中變量對應

編輯:C#入門知識

 下表列出了在 Win32 API(在 Wtypes.h 中列出)和 C 樣式函數中使用的數據類型。許多非托管庫包含將這些數據類型作為參數傳遞並返回值的函數。

第三列列出了在托管代碼中使用的相應的 .NET Framework 內置值類型或類。某些情況下,您可以用大小相同的類型替換此表中列出的類型。 

Wtypes.h中的非托管類 非托管 C 語言類型     托管類名            說明

 

handle void* System.IntPtr 32 位 byte unsigned char System.Byte 8 位 short short System.Int16 16 位 word unsigned short System.UInt16 16 位 int int System.Int32 32 位 uint unsigned int System.UInt32 32 位 long long System.Int32 32 位 bool long System.Int32 32 位 dword unsigned long System.UInt32 32 位 ulong unsigned long System.UInt32 32 位 char char System.Char 用 ANSI 修飾。 lpstr char* System.String 或 System.StringBuilder 用 ANSI 修飾。 lpcstr const char* System.String 或 System.StringBuilder 用 ANSI 修飾。 lpwstr wchar_t* System.String 或 System.StringBuilder 用 Unicode 修飾。 lpcwstr const wchar_t* System.String 或 System.StringBuilder 用 Unicode 修飾。 float float System.Single 32 位 double double System.Double 64 位

    

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved