/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

  1. namespace SampleLibrary.Proxy
  2. {
  3. public class ClassWithVirtualMethodWithOutParameter
  4. {
  5. public virtual void DoSomething(out int a)
  6. {
  7. a = 12345;
  8. }
  9. }
  10. }