/src/SampleLibrary/IOC/SampleDuckTypeImplementation.cs
C# | 9 lines | 9 code | 0 blank | 0 comment | 0 complexity | a0b0b03cbf21e70d06990bccc5c50b1a MD5 | raw file
1namespace SampleLibrary.IOC 2{ 3 public class SampleDuckTypeImplementation 4 { 5 public virtual void DoSomething() 6 { 7 } 8 } 9}