当前位置:  开发笔记 > 编程语言 > 正文

如何将cs文件添加到现有C#项目?

如何解决《如何将cs文件添加到现有C#项目?》经验,为你挑选了1个好方法。

前段时间我在Microsoft Visual C#2008 Express Edition中编写了一个小程序.其中包含一个名为"ProblemReport.cs"的文件,其中包含自己的表单和ProblemReport类.

我正在编写一个新程序,并希望重用此代码.(仍在MS Vis C#2008快递中工作)

在我的新程序中,在C#Solution Explorer中,我右键单击了我的项目并选择了"Add existing item ..."然后我添加了ProblemReport.cs,ProblemReport.designer.cs和ProblemReport.resx.

我在这里错过了哪些步骤?当我回到我的新程序中的主窗体,并尝试实例化一个新的"ProblemReport"实例时,我收到错误消息:

"无法找到名称空间名称'ProblemReport'的类型(您是否缺少using指令或程序集引用?)"

显然 - 我应该做点其他事情才能让它发挥作用......只是不确定它是什么!

-Adeena



1> p.campbell..:

确保所有CS文件都在同一名称空间内.听起来像进口的一个人没有和你的新项目一起生活.

确保这件事:

namespace MyProgram //same as the rest of your project
{

    public class ProblemReport
    {
    }

}

同时在你的其他.cs文件....

namespace MyProgram 
{

     public class SomeClass
     {
           public void DoSomething()
           {
               ProblemReport. //you should get intellisense here.
           }
      }

}

推荐阅读
手机用户2402852307
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有