/src/SampleLibrary/IOC/SampleClassWithArrayPropertyDependency.cs

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

  1. using LinFu.IoC.Configuration;
  2. namespace SampleLibrary.IOC
  3. {
  4. public class SampleClassWithArrayPropertyDependency
  5. {
  6. [Inject] public ISampleService[] Property { get; set; }
  7. }
  8. }