public void Add(GCSVParser csv, string strFile) { // 추가. S_Load stData = new S_Load(); stData.csv = csv; stData.strFile = strFile; m_listLoad.Add(stData); }
public bool Load(GCSVParser csv) { // 불러오기. if (false == csv.isLoaded) { for (int i = m_listLoad.Count; i > 0;) { S_Load stData = m_listLoad[--i]; if (csv == stData.csv) { _Load(stData); return(true); } } } return(false); }