C#
Why method calling through interfaces are slower than calling from abstract classes?
January 4th, 2010mannoo_mannooReally what is the use of Abstract Class
December 15th, 2009gowrisankarWhat is the use of Abstract class
What is Contract-First Development?
October 10th, 2009adminContract-first design and development is not something new. It was formally introduced by Bertrand Meyer as a part of his Eiffel Programming Language design and has appeared in various technical publications since 19861,2. Therefore, understanding contracts from an old-school tool/technology perspective might be helpful to grasp why it it's useful.
Static Classes in C#
October 7th, 2008adminStatic classes and class members are used to create data and functions that can be accessed without creating an instance of the class. Static class members can be used to separate data and behavior that is independent of any object identity: the data and functions do not change regardless of what happens to the object. Static classes can be used when there is no data or behavior in the class that depends on object identity