Add project files.

This commit is contained in:
Stone_Red
2021-12-17 20:43:17 +01:00
parent e1af7ef0b8
commit 070ec5d9fe
11 changed files with 397 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace DynamicInjector_Test;
internal class FirstTestService : IFirstTestService
{
private int count = 0;
public void Print()
{
Console.WriteLine(nameof(FirstTestService) + " | " + count++);
}
}