NativeMemory.Clear(Void*, UIntPtr) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重要
此 API 不符合 CLS。
清除内存块。
public:
static void Clear(void* ptr, UIntPtr byteCount);
[System.CLSCompliant(false)]
public static void Clear (void* ptr, UIntPtr byteCount);
[<System.CLSCompliant(false)>]
static member Clear : nativeptr<unit> * unativeint -> unit
参数
- ptr
- Void*
指向应清除的内存块的指针。
- byteCount
-
UIntPtr
unativeint
要清除的块的大小(以字节为单位)。
- 属性
注解
如果以 为 null
和 byteCount
为 0
调用ptr
此方法,则该方法等效于 no-op。
当 为 null
且 byteCount
大于 0
时ptr
的行为未定义。