/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

  1. namespace SampleLibrary.Proxy
  2. {
  3. public class ClassWithMethodReturnTypeFromGenericTypeArguments
  4. {
  5. public virtual T DoSomething<T>()
  6. {
  7. return default(T);
  8. }
  9. }
  10. }