/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
- namespace SampleLibrary.Proxy
- {
- public class ClassWithMethodReturnValueFromTypeArgument<T>
- {
- public virtual T DoSomething()
- {
- return default(T);
- }
- }
- }