Descripción

La longitud de esta propiedad del arreglo que retorna o establece la cantidad de elementos en un arreglo.

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.

// 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); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961