/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
- namespace SampleLibrary.IOC
- {
- public class SampleClassWithGenericMethod
- {
- public void SomeMethod()
- {
- }
- public void SomeMethod<T>()
- {
- }
- }
- }