public void Add_Category(string _input) { if (!categories.Contains(_input)) { categories.Add(_input); Save(categories, CATEGORY); Dropdown_Category.Update_All(); Dropdown_Big_Cat.Update_All(); } }
public void Remove_Category(int _index) { try { categories.RemoveAt(_index); Save(categories, CATEGORY); Dropdown_Category.Update_All(); Dropdown_Big_Cat.Update_All(); } catch { Debug.Log("Remove_Category: 존재하지 않는 인덱스 " + _index); } }