Exemple #1
0
 static void Main(string[] args)
 {
     try {
         igcFileName = args[0];
         igcFile     = new IGCFile(File.ReadAllText(igcFileName));
         OutputProgramHeader();
         SetupTimes();
         SetupStartingSequencePointNumber();
         ProduceOutput();
     } catch (Exception x) {
         Console.WriteLine(x.Message);
         Console.ReadKey();
     }
 }
 public BRecord(IGCFile parent, string line)
 {
     Parent = parent;
     Line   = line;
 }