/src/SampleLibrary/Proxy/ClassWithGenericTypeDefinitionReturnType.cs

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

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