/src/SampleLibrary/Proxy/ClassWithMethodReturnTypeFromGenericTypeArguments.cs
http://github.com/philiplaureano/LinFu · C# · 10 lines · 10 code · 0 blank · 0 comment · 0 complexity · 250d84a4ffe93ba2735ab8b4b861513d MD5 · raw file
- namespace SampleLibrary.Proxy
- {
- public class ClassWithMethodReturnTypeFromGenericTypeArguments
- {
- public virtual T DoSomething<T>()
- {
- return default(T);
- }
- }
- }