Frees a previously allocated memory using Il2Cpp.alloc - it's equivalent to C's free..
free
const handle = Il2Cpp.alloc(64);// ...Il2Cpp.free(handle); Copy
const handle = Il2Cpp.alloc(64);// ...Il2Cpp.free(handle);
Frees a previously allocated memory using Il2Cpp.alloc - it's equivalent to C's
free..