Memeriksa apakah daftar berisi nilai persatuan
if(list.Contains(item)){
//It does
}else{
//It not does
}
Cruel Chamois
if(list.Contains(item)){
//It does
}else{
//It not does
}
using System;
using System.Collections;
using System.Collections.Generic;
List<string> countries = new List<string>();
countries.Add("India");
countries.Add("USA");
countries.Add("UAE");
countries.Add("Russia");
if(countries.Contains("India"))
Debug.Log("Country found");
else
Debug.Log("Country not found");