在.Net命名指南(
http://msdn.microsoft.com/en-us/library/893ke618(v=vs.71).aspx)中有这样的声明:
“嵌套命名空间应该依赖于包含命名空间中的类型.例如,System.Web.UI.Design中的类依赖于System.Web.UI中的类.但是,System.Web.UI中的类不依赖于System.Web.UI.Design中的类.“
我想知道为什么?
解决方法
因为当你考虑它时它是有道理的.
让我用一个小例子来解释:
A knife-blade for example needs a handle for it to be a
“knife”.But a handle doesn’t need a knife-blade to be a handle,correct?
using KitchenSet; using KitchenSet.Knives; // This is where your knives (what uses Blades) would live. using KitchenSet.Knives.Blades; // The actual blades.