gpt4 book ai didi

c# - 不使用 c# 命名空间会发生什么

转载 作者:行者123 更新时间:2023-11-30 22:04:27 25 4
gpt4 key购买 nike

Hi 将在 c# 中编写一个不带命名空间的 dll。

我将编写一个类然后将其转换为 dll,即 c# 默认库类型是

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace temp
{
public class c1
{
public static string f1(string deger) {
return deger.ToUpper() + " 333 ";
}
}
}

现在我将这样编写这段代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

public class c1
{
public static string f1(string deger) {
return deger.ToUpper() + " 333 ";
}
}

是否两个代码在运行时相同

最佳答案

然后这个类将在 .NET 未命名的全局命名空间中(不在程序集根命名空间中)。它可以从任何地方作为“global::c1”或只是“c1”访问

关于c# - 不使用 c# 命名空间会发生什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25237858/

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