言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

ArrayUtility

Namespace: UnityEditor

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

Sumbission failed

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

Close

Cancel

Description

配列(Array)を扱いやすくするためのヘルパークラスです

Static Functions

Add 配列の最後に要素を追加します
AddRange 配列の最後に複数の要素を追加します
ArrayEquals 2つの配列が同じかどうか判断します
Clear 配列を初期化します
Contains 配列の中に特定の要素が含まれているか確認します
FindIndex 配列から条件を満たす要素の最初のindexを取得します
IndexOf 配列から特定の要素の最初のindexを取得します
Insert 要素を配列の特定の位置に挿入します
LastIndexOf 配列から特定の要素の最後のindexを取得します
Remove 配列から特定の要素を削除します
RemoveAt indexから配列の要素を削除します