/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
- namespace SampleLibrary.Proxy
- {
- public abstract class ClassWithVirtualByRefMethod
- {
- public abstract void ByRefMethod(ref int a);
- }
- }