我不知道为什么 Asp.net MVC 开发人员将using
指令放在System.Web.Mvc
命名空间中,如下所示。
namespace System.Web.Mvc
{
using System;
using System.Collections.ObjectModel;
[Serializable]
public class ModelErrorCollection : Collection<ModelError>
{
public void Add(Exception exception)
{
Add(new ModelError(exception));
}
public void Add(string errorMessage)
{
Add(new ModelError(errorMessage));
}
}
}
我们什么时候需要将 using
指令放在namespace
作用域内?