Thursday, August 16, 2007

ASP.NET 2.0 and 1.1 diffrences

One of major intoduction of pardifrences is the intoduction of partial classes. Class defination is split into two or more partial clasees, all parts are combined when the application is compiled.

This situation is quite uesful when we are having large team.

However there are certain restrictions to this.

Sunday, May 13, 2007

C# Delegates Overview:

C# Delegates Overview:

Delegates have the following properties:
  • Delegates are similar to C++ function pointers, but are type safe.
  • Delegates allow methods to be passed as parameters.
  • Delegates can be used to define callback methods.
  • Delegates can be chained together; for example, multiple methods can be called on a single event.

Wednesday, January 3, 2007

Hello World

Hello World!!! This is my first Blog!