Posts

Showing posts from March, 2012

How using woks in C#?

Using  statement used to dispose object automatically while end of method execution. The CLR will generate try finally block and dispose managed objects in finally block. http://www.codeproject.com/Articles/6564/Understanding-the-using-statement-in-C

Dependency Injection Silverlight

Explains nicely about Dependency Injection: http://www.devx.com/dotnet/Article/34066/0/page/2 Explained Three Types of Injections: Constructor Injection Setter Injection Interface-based Injection http://www.codeproject.com/Articles/13831/Dependency-Injection-for-Loose-Coupling