菜鸟前来请教怎样在一个类库中调用另一个类库的方法?谢谢
大家好.我是想在一个类库中调用另一个类库的方法.类库的DLL已经添加引用上了.可就是无法对类库里的类进行实例化.请问原因再哪?谢谢.代码如下:
首先是要实例化的命名空间
using System;
using System.Collections.Generic;
using System.Text;
using Third.MyThird;//导入命名空间Third和MyThird类
namespace Second
{
public class MySecond
{
public void TestSecond()
{
//此处无法实例化MyThird对象!!但MyThird方法已经是public
}
}
}
下面是被引用的空间代码
using System;
using System.Collections.Generic;
using System.Text;
namespace Third
{
public class MyThird
{
public void Third()
{ }
}
}
[[it] 本帖最后由 uukkcc 于 2008-9-28 21:19 编辑 [/it]]