@@ -16,23 +16,23 @@ static void Main(string[] args)
1616 DateTime startTimeAll = DateTime . Now ;
1717 DateTime startTime = startTimeAll ;
1818
19- Console . WriteLine ( "Loading binary..." ) ;
19+ // Console.WriteLine("Loading binary...");
2020
21- using ( FileStream stream = new FileStream ( testFile + ".esm" , FileMode . Open ) )
22- using ( BinaryReader reader = new BinaryReader ( stream , Encoding . GetEncoding ( "ISO-8859-1" ) ) )
23- {
24- pluggy . ReadBinary ( reader ) ;
25- }
21+ // using (FileStream stream = new FileStream(testFile + ".esm", FileMode.Open))
22+ // using (BinaryReader reader = new BinaryReader(stream, Encoding.GetEncoding("ISO-8859-1")))
23+ // {
24+ // pluggy.ReadBinary(reader);
25+ // }
2626
27- Console . WriteLine ( "...Done in: " + ( DateTime . Now - startTime ) . ToString ( @"mm\:ss\.ffff" ) ) ;
28- startTime = DateTime . Now ;
29- Console . WriteLine ( "Writing XML..." ) ;
27+ // Console.WriteLine("...Done in: " + (DateTime.Now - startTime).ToString(@"mm\:ss\.ffff"));
28+ // startTime = DateTime.Now;
29+ // Console.WriteLine("Writing XML...");
3030
31- Directory . CreateDirectory ( testFile ) ;
32- pluggy . WriteXML ( testFile ) ;
31+ // Directory.CreateDirectory(testFile);
32+ // pluggy.WriteXML(testFile);
3333
34- Console . WriteLine ( "...Done in: " + ( DateTime . Now - startTime ) . ToString ( @"mm\:ss\.ffff" ) ) ;
35- startTime = DateTime . Now ;
34+ // Console.WriteLine("...Done in: " + (DateTime.Now - startTime).ToString(@"mm\:ss\.ffff"));
35+ // startTime = DateTime.Now;
3636 Console . WriteLine ( "Loading XML..." ) ;
3737
3838 pluggy = ElderScrollsPlugin . ReadXML ( testFile ) ;
0 commit comments