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