/src/SampleLibrary/IOC/SampleClassWithGenericMethod.cs

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

  1. namespace SampleLibrary.IOC
  2. {
  3. public class SampleClassWithGenericMethod
  4. {
  5. public void SomeMethod()
  6. {
  7. }
  8. public void SomeMethod<T>()
  9. {
  10. }
  11. }
  12. }