提问人:Mahfuz Swaron 提问时间:11/7/2022 最后编辑:Mahfuz Swaron 更新时间:11/7/2022 访问量:2107
(1,2):警告 CS0105:“System”的 using 指令之前出现在此命名空间中
(1,2): warning CS0105: The using directive for `System' appeared previously in this namespace
问:
我是一个绝对的初学者。我尝试打印 Hello World。但它说.
这是我的代码:(1,2): warning CS0105: The using directive for `System' appeared previously in this namespace
using System;
namespace HelloWorld {
class Program {
static void Main(string[] args) {
Console.WriteLine("Hello World!");
}
}
};
你能告诉我如何修复这个错误吗?
答: 暂无答案
下一个:在命名空间外部调用静态类
评论
Program.cs(2,7,2,13): warning CS0105: The using directive for 'System' appeared previously in this namespace
2,7,2,13
};
是问题所在,请删除命名空间块末尾的 Extra。;