/src/SampleLibrary/Proxy/ClassWithParametersFromHostGenericTypeArguments.cs
C# | 9 lines | 9 code | 0 blank | 0 comment | 0 complexity | 31124c4c50e48b551a246970913905fb MD5 | raw file
- namespace SampleLibrary.Proxy
- {
- public class ClassWithParametersFromHostGenericTypeArguments<T0, T1>
- {
- public virtual void DoSomething(T0 arg1, T1 arg2)
- {
- }
- }
- }