/src/SampleLibrary/Proxy/DerivedClassWithVirtualByRefMethod.cs

http://github.com/philiplaureano/LinFu · C# · 10 lines · 10 code · 0 blank · 0 comment · 0 complexity · ce7001f89c371b90a5d9505750de8066 MD5 · raw file

  1. namespace SampleLibrary.Proxy
  2. {
  3. public class DerivedClassWithVirtualByRefMethod : ClassWithVirtualByRefMethod
  4. {
  5. public override void ByRefMethod(ref int a)
  6. {
  7. a = 54321;
  8. }
  9. }
  10. }