无法打开我的C#项目

时间:2009-11-27 11:48:46

标签: c# .net visual-studio-2008

我无法在Visual Studio 2008中打开我的项目。它是由我的朋友在C#中开发的。它显示了这个错误:

  "Could not find type 'LibrarySystem.ctrlSeparator'.
  Please make sure that the assembly that contains this type is referenced.
  If this type is a part of your development project, make sure that
  the project has been successfully built. "

另外

  "The variable 'ctrlSeparator1' is either undeclared or was never assigned. "

如何解决这个问题?

3 个答案:

答案 0 :(得分:7)

尽管如此......错误信息告诉您需要知道的一切......

它正在尝试加载一个不存在的控件。所以要么你的朋友没有给你整个项目,要么他使用了你没有的第三方组件。

答案 1 :(得分:2)

显然,你的朋友使用(或写了自己)外部图书馆。

请他为你提供这个程序集,以便你可以编译项目。

答案 2 :(得分:1)

要么您没有完整的项目,要么需要注册dll。确保在代码或程序集中有LibrarySystem.ctrlSeparator。如果它处于非托管程序集中,则询问朋友是否需要注册。