/src/SampleLibrary/Proxy/ClassWithGenericMethod.cs

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

  1. using System;
  2. namespace SampleLibrary.Proxy
  3. {
  4. public class ClassWithGenericMethod
  5. {
  6. public virtual void DoSomething<T>()
  7. {
  8. throw new NotImplementedException();
  9. }
  10. }
  11. }