好的,有System
和System.Web
。我是否正确,这表明的结构是:
namespace System
{
// all of the outer namespace members
namespace Web
{
// all of the inner members
}
}
并且当一个命名空间嵌套在另一个命名空间中时,只有using
父/外部命名空间的指令不会自动引入子/嵌套命名空间?换句话说:
using System;
public class Example
{
public Example()
{
context1 = new HttpContext(); // won't work
context2 = new System.Web.HttpContext(); // will work
}
}
只是想看看我是否真的理解正确。