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