点击或拖拽改变大小

Functions.MemRealloc 方法

X#
ReAllocate a static memory buffer of a specified size.

命名空间:  XSharp.RT
程序集:  XSharp.RT (在 XSharp.RT.dll 中) 版本:2.22 GA
语法
 FUNCTION MemRealloc(
	pBuffer AS IntPtr,
	nSize AS DWORD
) AS IntPtr
查看代码

参数

pBuffer
类型:IntPtr
nSize
类型:UInt32

返回值

类型:IntPtr
Returns the original pointer when the nSize parameter is smaller or equal to the current size.
备注
提示 提示:
静态内存函数(MemAlloc、MemSet 等)仅用于兼容性。 在大多数情况下,静态内存块可以(并且应该)用字节数组替换。
运行时中的许多函数,如接受内存块作为参数的低级 IO 函数,现在有接受字节数组作为参数的重载。
我们建议您使用这些重载,因为它们的性能稍微更好。
参见