/src/SampleLibrary/Proxy/ClassWithOpenGenericParameters.cs
http://github.com/philiplaureano/LinFu · C# · 11 lines · 10 code · 1 blank · 0 comment · 0 complexity · 464828829ec9c687cbe206a55260896b MD5 · raw file
- using System.Collections.Generic;
- namespace SampleLibrary.Proxy
- {
- public class ClassWithOpenGenericParameters
- {
- public virtual void DoSomething<T>(List<T> someList)
- {
- }
- }
- }