ScottGu has written a wonderful article here on the functionality of extender controls which are shipped with the ASP.NET AJAX framework in VS 2008. Also you can build a new extender control from scratch here. So the foremost question is why do you go for an extendercontrol any way? First and foremost, an extender control is [...]
Archive for January, 2008
Control Extenders in ASP.NET AJAX
Posted in ASP.NET on January 23, 2008 | Leave a Comment »
ArrayList vs List
Posted in .NET Framework on January 21, 2008 | 2 Comments »
What is the difference between an ArrayList and a Generic List Collection of type List<T>?
The article here decently lists out the subtle differences between the above two.
To summarize it if you use list<t> no unboxing is required.