gpt4 book ai didi

c# - 我们什么时候需要将 using 指令放入命名空间范围内?

转载 作者:行者123 更新时间:2023-11-30 15:08:55 25 4
gpt4 key购买 nike

<分区>

我不知道为什么 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 范围内?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com