2 implementations of IWrapper
Aspire.Hosting.RemoteHost.Tests (2)
GenericMethodResolverTests.cs (2)
132public class Wrapper<T>(T value) : IWrapper<T> 137private sealed class IntWrapper(int value) : IWrapper<int>
1 reference to IWrapper
Aspire.Hosting.RemoteHost.Tests (1)
GenericMethodResolverTests.cs (1)
122public static T GenericFromInterface<T>(IWrapper<T> wrapper) => wrapper.Value;