我收到[类TestClass的类实例声明中的错误:[BC30002]类型'TestClass'不是defiend。我在VS2005 IDE中得到了这个 表达式= Code.M_TestClass.ReturnTheStr() 参考Mytest dll,CLASS TestClass INSTANCE M_Testclass
DLL代码
namespace MyTest
{
public class TestClass
{
public TestClass() : base()
{
// Constructo
}
public static string ReturnStr()
{
return "Help is here";
}
public string ReturnTheStr()
{
return "Instance Help is here";
}
}
}
任何想法都会很棒
答案 0 :(得分:0)
在名称空间前缀所需的引用下提供CLASS名称 Mytest.Test Class