Version: 2017.1

Array.RemoveAt()

切换到手册

描述

从数组中删除/索引/处的元素。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public ArrayList arr = new Array("Hello", "and good morning", "World"); void Example() { arr.RemoveAt(1); print(arr); } }

注意:此功能仅适用于 javascript。C# 不使用此功能。