/src/SampleLibrary/Proxy/ClassWithVirtualMethodWithOutParameter.cs
http://github.com/philiplaureano/LinFu · C# · 10 lines · 10 code · 0 blank · 0 comment · 0 complexity · 95efc838bedb28e3ea712e00fc0d2626 MD5 · raw file
- namespace SampleLibrary.Proxy
- {
- public class ClassWithVirtualMethodWithOutParameter
- {
- public virtual void DoSomething(out int a)
- {
- a = 12345;
- }
- }
- }