NativeMemory.AlignedFree(Void*) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Important
This API is not CLS-compliant.
Frees an aligned block of memory.
public:
static void AlignedFree(void* ptr);
[System.CLSCompliant(false)]
public static void AlignedFree (void* ptr);
[<System.CLSCompliant(false)>]
static member AlignedFree : nativeptr<unit> -> unit
Parameters
- ptr
- Void*
A pointer to the aligned block of memory that should be freed.
- Attributes
Remarks
This method does nothing if ptr
is null
.
This method is a thin wrapper over the C free
API or a platform dependent aligned free API such as _aligned_free
on Win32.
Applies to
Samarbeid med oss på GitHub
Du finner kilden for dette innholdet på GitHub. Der du også kan opprette og se gjennom problemer og pull-forespørsler. Hvis du vil ha mer informasjon, kan du se vår bidragsyterveiledning.