/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
- using System.Collections.Generic;
- namespace SampleLibrary.Proxy
- {
- public class ClassWithNestedOpenGenericParameters
- {
- public virtual List<T2> DoSomething<T1, T2>(Dictionary<T1, List<T2>> somelist)
- {
- return null;
- }
- }
- }