Example #1
0
        public void save(Report report)
        {
            String text = report.getfirstN() + ";" + report.getlastN() + ";" + report.getid() + ";" + report.getProgram() + ";" + report.getLocation() + ";" + report.getTime() + ";" + report.getDescription() + "\n";

            System.IO.File.AppendAllText("..\\..\\..\\Resources\\output.txt", text);
        }