Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


TryResize(int, NativeArrayOptions)

Attempts to set the length in bytes. Does nothing if the new length is invalid.
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Method
  • Namespace: Unity.Collections
  • Assembly: UnityEngine.ManagedKernelModule
public bool TryResize(int newLength, NativeArrayOptions clearOptions = NativeArrayOptions.ClearMemory)

Parameters

newLength

The desired length.

clearOptions

Whether added or removed bytes should be cleared (zeroed). (Increasing the length adds bytes; decreasing the length removes bytes.)

Returns

Type

Description

boolTrue if the new length is valid.