/src/SampleLibrary/Proxy/ClassWithNestedOpenGenericParameters.cs

http://github.com/philiplaureano/LinFu · C# · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · 01e17c40805b7c6154bc9585a0f12465 MD5 · raw file

  1. using System.Collections.Generic;
  2. namespace SampleLibrary.Proxy
  3. {
  4. public class ClassWithNestedOpenGenericParameters
  5. {
  6. public virtual List<T2> DoSomething<T1, T2>(Dictionary<T1, List<T2>> somelist)
  7. {
  8. return null;
  9. }
  10. }
  11. }