public bool AddListMap(string code, Map_Str map) { foreach (var item in m_ArmyList) { if (CFormat.ToSimplified(item.code) == code) { item.map.Add(map); return(true); } } return(false); }
public bool DelListMap(string code, Map_Str map) { foreach (var item in m_ArmyList) { if (CFormat.ToSimplified(item.code) == code) { if (item.map.Contains(map)) { item.map.Remove(map); return(true); } } } return(false); }