/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

  1. using System.Collections.Generic;
  2. namespace SampleLibrary.Proxy
  3. {
  4. public class ClassWithOpenGenericParameters
  5. {
  6. public virtual void DoSomething<T>(List<T> someList)
  7. {
  8. }
  9. }
  10. }