mirror of
https://github.com/Stone-Red-Code/DynamicInjector.git
synced 2026-09-04 17:16:05 +02:00
11 lines
226 B
C#
11 lines
226 B
C#
namespace DynamicInjector_Test;
|
|
|
|
internal class FirstTestService : IFirstTestService
|
|
{
|
|
private int count = 0;
|
|
|
|
public void Print()
|
|
{
|
|
Console.WriteLine(nameof(FirstTestService) + " | " + count++);
|
|
}
|
|
} |