Unity 数组中查找是否包涵某个元素
时间: 2023-07-08 19:17:24 浏览: 238
在数组中查找指定元素.cpp
在 Unity 中,可以使用 `Contains` 方法来判断一个数组是否包含某个元素。具体用法可以参考下面的示例代码:
```csharp
using UnityEngine;
public class Example : MonoBehaviour
{
void Start()
{
// 定义一个包含一些整数的数组
int[] numbers = { 1, 2, 3, 4, 5 };
// 判断数组中是否包含数字 3
if (numbers.Contains(3))
{
Debug.Log("数组中包含数字 3");
}
else
{
Debug.Log("数组中不包含数字 3");
}
}
}
```
运行上面的示例代码,如果数组中包含数字 3,则会输出 "数组中包含数字 3";否则会输出 "数组中不包含数字 3"。
阅读全文