/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

  1. namespace SampleLibrary.AOP
  2. {
  3. public class SampleClassWithByRefMethod
  4. {
  5. public void ByRefMethod(ref object a)
  6. {
  7. }
  8. public void NonByRefMethod(object a)
  9. {
  10. }
  11. }
  12. }