Functions.PtrLenWrite 方法 | |
确定在给定指针处可以写入的字节数。
命名空间:
XSharp.VO
程序集:
XSharp.VO (在 XSharp.VO.dll 中) 版本:2.22 GA
语法 FUNCTION PtrLenWrite(
lpv AS IntPtr
) AS DWORD
public static uint PtrLenWrite(
IntPtr lpv
)
查看代码参数
- lpv
- 类型:IntPtr
返回值
类型:
UInt32
从
ptrRead 指向的位置开始可以写入的字节数。
如果
ptrRead 是无效指针或写保护指针,则返回值为 0。
备注 示例
此示例使用 PtrLen() 作为 HexDump() 的参数:
1HexDump(ptrBuff, PtrLen(ptrBuff))
参见