2
votes
7answers
595 views
How to pass arguments to a constructor in an IOC-framework
How can I pass arguments to a constructor in an IOC-framework?
I want to do something like: (Trying to be IOC-framework agnostic ;) )
object objectToLogFor = xxx;
container.Resolve& …
3
votes
The use of config file is it equivalent to use of globals?
My first reaction would be that it is not the same. I think the problem with globals is the read+write scenario. Config-files are readonly (at least in terms of execution).
In the same way constan …
