| Name | Message | Date |
|---|---|---|
| 📄 ITestInterface.cs | 1 month ago | |
| 📄 packages.lock.json | 1 month ago | |
| 📄 Poc.csproj | 1 month ago | |
| 📄 Program.cs | 1 month ago |
📄
Poc/ITestInterface.cs
namespace Reacher.Poc; internal interface ITestInterface { void Test(); } internal sealed class TestImplementation : ITestInterface { public void Test() { TransientThroughInterfaceImplementation(); } private static void TransientThroughInterfaceImplementation() { } }