Version: Unity 6.7 Beta (6000.7)
LanguageEnglish
  • C#

FixedString512Bytes.TryResize

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public bool TryResize(int newLength, NativeArrayOptions clearOptions);

Parameters

Parameter Description
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

bool True if the new length is valid.

Description

Attempts to set the length in bytes. Does nothing if the new length is invalid.