/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
- using LinFu.IoC.Configuration;
- namespace SampleLibrary.IOC
- {
- public class SampleClassWithArrayPropertyDependency
- {
- [Inject] public ISampleService[] Property { get; set; }
- }
- }