static void Main(string[] args) { UserTable.Load(); while (true) { var input = Console.ReadLine(); CommaParser parser = new CommaParser(); parser.Parser(input); } }
static void Main(string[] args) { string filePath = Path.Combine(Environment.CurrentDirectory, "Mysqlite.data"); UserTable table = UserTable.Open(filePath); CommaParser parser = new CommaParser(); parser.Table = table; while (true) { var input = Console.ReadLine(); parser.Parser(input); } }