/src/SampleLibrary/Proxy/ClassWithVirtualByRefMethod.cs

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

  1. namespace SampleLibrary.Proxy
  2. {
  3. public abstract class ClassWithVirtualByRefMethod
  4. {
  5. public abstract void ByRefMethod(ref int a);
  6. }
  7. }