/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
- using System;
- namespace SampleLibrary.Proxy
- {
- public class ClassWithGenericMethod
- {
- public virtual void DoSomething<T>()
- {
- throw new NotImplementedException();
- }
- }
- }