/src/SampleLibrary/AOP/SampleClassWithByRefMethod.cs
http://github.com/philiplaureano/LinFu · C# · 13 lines · 12 code · 1 blank · 0 comment · 0 complexity · e0b571c9a2d70f3fc2f708a3a2073046 MD5 · raw file
- namespace SampleLibrary.AOP
- {
- public class SampleClassWithByRefMethod
- {
- public void ByRefMethod(ref object a)
- {
- }
- public void NonByRefMethod(object a)
- {
- }
- }
- }