Hi,/P>
One of the interesting things that I have not yet mentioned about the Extension method is there naming convention. In dot net framework 3.5 there is not restriction on the naming convention of the extension methods. /P>
What this means is that we can have two extension methods with the same name. In fact we can have an extension method with the same name as an instance method of the class. /P>
So an extension method like ToString() can be added to the object although the same method already exists in the same class. The method call will be selected in the following order./P>
Instance method./P>
Extension method with the same namespace/P>
Extension method outside the current namespace/P>
Vikram/P>