命名空间:
System.Runtime.InteropServices
程序集:
System.Runtime.InteropServices.dll, mscorlib.dll, netstandard.dll
将托管 String 的内容复制到非托管内存,并在复制时转换为 ANSI 格式。
C#
[System.Security.SecurityCritical]
public static IntPtr StringToHGlobalAnsi (string s);
参数
s
String
要复制的托管字符串。
返回
IntPtr
非托管内存中将 s 复制到其中的地址;如果 s 为 null,则为 0。
属性
SecurityCriticalAttribute
异常
OutOfMemoryException
没有足够的可用内存。
ArgumentOutOfRangeException
s 参数超过了操作系统所允许的最大长度。
网友评论