forked from 47-studio-org/PostSharp.Samples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
21 lines (18 loc) · 846 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
namespace PostSharp.Samples.Persistence
{
internal class Program
{
private static void Main(string[] args)
{
Console.WriteLine($"TestAppSettings.SomeBoolSetting={TestAppSettings.SomeBoolSetting}");
Console.WriteLine($"TestAppSettings.SomeInt32Setting={TestAppSettings.SomeInt32Setting}");
Console.WriteLine($"TestAppSettings.SomeNullableInt32Setting={TestAppSettings.SomeNullableInt32Setting}");
Console.WriteLine($"TestAppSettings.SomeMissingInt32Setting={TestAppSettings.SomeMissingInt32Setting}");
Console.WriteLine(
$"TestAppSettings.SomeMissingNullableInt32Setting={TestAppSettings.SomeMissingNullableInt32Setting}");
TestRegistryValues.ExecutionCount++;
Console.WriteLine($"TestRegistryValues.ExecutionCount={TestRegistryValues.ExecutionCount}");
}
}
}