Welcome

首页 / 软件开发 / C# / c和c#托管与非托管代码中变量对应

c和c#托管与非托管代码中变量对应2010-12-25下表列出了在 Win32 API(在 Wtypes.h 中列出)和 C 样式函数中使用的数据类型。许多非托管库包含将这些数据类型作为参数传递并返回值的函数。第三列列出了在托管代码中使用的相应的 .NET Framework 内置值类型或类。某些情况下,您可以用大小相同的类型替换此表中列出的类型。

Wtypes.h中的非托管类 非托管类型 托管类名 说明

handlevoid*System.IntPtr32 位
byteunsigned charSystem.Byte8 位
shortshortSystem.Int1616 位
wordunsigned shortSystem.UInt1616 位
intintSystem.Int3232 位
uintunsigned intSystem.UInt3232 位
longlongSystem.Int3232 位
boollongSystem.Int3232 位
dwordunsigned longSystem.UInt3232 位
ulongunsigned longSystem.UInt3232 位
charcharSystem.Char用 ANSI 修饰。
lpstrchar*System.String 或 System.StringBuilder用 ANSI 修饰。
lpcstrconst char*System.String 或 System.StringBuilder用 ANSI 修饰。
lpwstrwchar_t*System.String 或 System.StringBuilder用 Unicode 修饰。
lpcwstrconst wchar_t*System.String 或 System.StringBuilder用 Unicode 修饰。
floatfloatSystem.Single32 位
doubledoubleSystem.Double64 位