#39;namespace#39; but is used like a #39;type#39;(“命名空间,但用作“类型)
问题描述
这是我的程序,该类使用它称为 Time2我已将参考添加到 TimeTest我不断收到错误'Time2' is a 'namespace' but is used like a 'type'
This is my program the class uses it is called Time2 I have the reference added to TimeTest I keep getting the Error 'Time2' is a 'namespace' but is used like a 'type'
谁能告诉我这个错误是什么以及如何解决它?
Could someone please tell me what this error is and how to fix it?
namespace TimeTest
{
class TimeTest
{
static void Main(string[] args)
{
Time2 t1 = new Time2();
}
}
}
推荐答案
我怀疑你遇到过同样的问题至少两次.
I suspect you've got the same problem at least twice.
这里:
namespace TimeTest
{
class TimeTest
{
}
...您正在声明一个与它所在的命名空间同名的类型.不要那样做.
... you're declaring a type with the same name as the namespace it's in. Don't do that.
现在您显然对 Time2
有同样的问题.我怀疑如果你添加:
Now you apparently have the same problem with Time2
. I suspect if you add:
using Time2;
到您的 using
指令列表中,您的代码将被编译.但是请,请,请解决更大的问题:有问题的名称选择.(点击上面的链接可以了解为什么这是一个坏主意的更多细节.)
to your list of using
directives, your code will compile. But please, please, please fix the bigger problem: the problematic choice of names. (Follow the link above to find out more details of why it's a bad idea.)
(此外,除非您真的对编写基于时间的类型感兴趣,否则我建议您不要这样做……我说的是,作为一个这样做的人确实这样做了.使用内置功能或第三方库,例如,mine.正确处理日期和时间令人惊讶毛茸茸的.:)
(Additionally, unless you're really interested in writing time-based types, I'd advise you not to do so... and I say that as someone who does do exactly that. Use the built-in capabilities, or a third party library such as, um, mine. Working with dates and times correctly is surprisingly hairy. :)
这篇关于“命名空间",但用作“类型"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“命名空间",但用作“类型"


- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- 使用 rss + c# 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01