public void Visit(EntityZipFile info) { info.PersData = new List <string>(); try { IEnumerable <string> strings = info.GetFileLines(); foreach (string str in strings) { foreach (var reg in PersData) { MatchCollection mc = Regex.Matches(str, reg); foreach (Match m in mc) { info.PersData.Add(m.Value + " in " + info.GetFullName() + " file."); } } } } catch (Exception) { } }
public void Visit(EntityZipFile info) { throw new NotImplementedException(); }