/src/SampleLibrary/AOP/SampleClassWithThirdPartyMethodCall.cs
C# | 12 lines | 11 code | 1 blank | 0 comment | 0 complexity | 9a014b5c01e59ce5aaae67a694f76e62 MD5 | raw file
1using System; 2 3namespace SampleLibrary.AOP 4{ 5 public class SampleClassWithThirdPartyMethodCall 6 { 7 public void DoSomething() 8 { 9 Console.WriteLine("Hello, World!"); 10 } 11 } 12}