Select your preferred scripting language. All code snippets will be displayed in this language.
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.
CloseFor 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.
CloseThe length property of the array that returns or sets the number of elements in array.
The Array.length
controls how JS can access or set the size of the array.
The example JS script below shows that the length property of the array starts with
a lower-case "l".
Note: This page includes a c-sharp script example. The use of two array styles
and their use of length are shown.
function Start () { var arr = Array ("Hello", "World");
// Prints "2" print(arr.length); // resizes the array to a size of 5 arr.length = 5; }
// C# array length example using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Start() { // use string array approach string[] names = new string[]{"Hello", "World", "Really"}; foreach (string s in names) { print("user is: " + s); } print("length is: " + names.Length); // use ArrayList approach ArrayList arr = new ArrayList(); arr.Add("Hello"); arr.Add("World");
// ArrayList uses Count instead of Length print(arr.Count); } }