mirror of
https://github.com/Stone-Red-Code/DynamicInjector.git
synced 2026-09-04 09:06:06 +02:00
Add project files.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
namespace DynamicInjector_Test;
|
||||
|
||||
internal class FirstTestService : IFirstTestService
|
||||
{
|
||||
private int count = 0;
|
||||
|
||||
public void Print()
|
||||
{
|
||||
Console.WriteLine(nameof(FirstTestService) + " | " + count++);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user