Unity C#中校对两个列表内数据是否正确
using System.Collections.Generic;
using UnityEngine;
public class ListComparer : MonoBehaviour
{
// 示例列表
public List<string> list1 = new List<string> {
"apple", "banana", "cherry" };
public List<string