/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
- using System.Collections.Generic;
- namespace SampleLibrary.Proxy
- {
- public class ClassWithGenericTypeDefinitionReturnType
- {
- public virtual List<T> DoSomething<T>()
- {
- return new List<T>();
- }
- }
- }