Program.cs 343 B

12345678910111213141516171819
  1. using System;
  2. using _Workbench.Layers;
  3. using log4net.Config;
  4. namespace _Workbench
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. XmlConfigurator.Configure();
  11. TestLayers.Test();
  12. Console.WriteLine("Press any key to close.");
  13. Console.ReadKey();
  14. }
  15. }
  16. }