0
votes
How to implement a singleton in C#?
Personally I would go for a dependency injection framework, like Unity, all of them are able to configure singleton items in the container and would improve coupling by moving from a class dependen …
0
votes
C# - Code your own IOC Container
Unless there's a very good reason I wouldn't go reinvent the wheel and implement a IoC container myself, specially because there are are a lot of good options like …
0
votes
Am i limited with C# and ASP ?
.Net is growing in the enterprise market but C# still is a static, type-safe, compile based language. Despite MS is moving towards the dynamic languages (like Iron Ruby), in the future the Common L …
1
vote
How do you do version numbering in an agile project?
I prefer to separate the build and release process from the team development process, so I would hardly add the the iteration, sprint or similar to the version. Your case is a fine example on how h …
0
votes
Best Practices for IOC Container
Another option would be using the CommonServiceLocator, although it may be a pointless indirection, you may use the Serv …
0
votes
What am I missing about WCF?
Biggest advantage of using WCF from a programmer's point of view: separates the definition of exposed services (operations, contracts, etc.) from the protocol's specific details, unlike ASMX where …
