|
@@ -16,7 +16,8 @@ internal class Program
|
|
|
{
|
|
|
static void Main()
|
|
|
{
|
|
|
-
|
|
|
+ Console.WriteLine($"Environment.CurrentDirectory {Environment.CurrentDirectory}");
|
|
|
+ Console.WriteLine($"AppDomain.CurrentDomain.SetupInformation.ApplicationBase {AppDomain.CurrentDomain.SetupInformation.ApplicationBase}");
|
|
|
//RingBuffer<int> ring = new(5);
|
|
|
|
|
|
//for (int i = 1; i <= 19; i++)
|
|
@@ -48,6 +49,7 @@ internal class Program
|
|
|
|
|
|
//ConfigConverter converter = new();
|
|
|
//converter.Convert(@"E:\Download\Settings\Settings");
|
|
|
+ Thread.Sleep(-1);
|
|
|
}
|
|
|
}
|
|
|
|