PageRenderTime 25ms CodeModel.GetById 23ms RepoModel.GetById 1ms app.codeStats 0ms

/src/SampleLibrary/Proxy/ClassWithMethodReturnValueFromTypeArgument.cs

http://github.com/philiplaureano/LinFu
C# | 10 lines | 10 code | 0 blank | 0 comment | 0 complexity | b285e1fea4e321b179457ccd8e0faf53 MD5 | raw file
  1. namespace SampleLibrary.Proxy
  2. {
  3. public class ClassWithMethodReturnValueFromTypeArgument<T>
  4. {
  5. public virtual T DoSomething()
  6. {
  7. return default(T);
  8. }
  9. }
  10. }