/src/SampleLibrary/AOP/SampleClassWithThirdPartyMethodCall.cs

http://github.com/philiplaureano/LinFu · C# · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · 9a014b5c01e59ce5aaae67a694f76e62 MD5 · raw file

  1. using System;
  2. namespace SampleLibrary.AOP
  3. {
  4. public class SampleClassWithThirdPartyMethodCall
  5. {
  6. public void DoSomething()
  7. {
  8. Console.WriteLine("Hello, World!");
  9. }
  10. }
  11. }