Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的项目中创建了 class1.cs,其中包含public int a;
public int a;
在同一个项目中,我有另一个具有命名空间基本和类名程序的程序,该程序类中还包含 main 方法。在主要方法中,如果我尝试为 class1 创建对象,则会收到错误 class1 is not present in the current context 或缺少程序集引用。
尝试通过包含添加的程序集的命名空间来创建类的实例,例如
namespace.class1 c1 = new namesapce.class1();
或在上面包含命名空间
using namespace; class1 c1= new class1();
这里的命名空间被替换为其中包含 class1 的命名空间的名称。