| Author: Babu Akkandi 24 Nov 2008 | Member Level: Diamond | Rating:    Points: 6 |
Hi,
This is Good Question.
We Need to Include both, because "Using" Will Includes only the content of Top Level Namespaces.
using System.Collections; using System.Collections.Generic;
If you Include Only "System.Collections.Generic", You Access the methods, property, field from Generic class not root level (*.Collections.*),
also some of the localized objects are instantiated in "System.Collections" which may be used in Generic Class
Regards, Babu A
Thanks and Regards, Babu Akkandi Microsoft Technology
|