Convert to a logger so I can see results in terminal or IDE

This commit is contained in:
2020-12-11 09:36:28 -06:00
parent aa8d9b5fdb
commit 97d7d0141d
12 changed files with 46 additions and 49 deletions

View File

@ -16,7 +16,16 @@
Q09.Go();
Q10.Go();
Q11.Go();
System.Diagnostics.Debug.WriteLine($"Total time={(System.DateTime.Now - start).TotalMilliseconds}ms");
Util.Log($"Total time={(System.DateTime.Now - start).TotalMilliseconds}ms");
}
}
class Util
{
internal static void Log(string msg)
{
System.Diagnostics.Debug.WriteLine(msg);
System.Console.WriteLine(msg);
}
}
}