无法从ClassLibrary项目文件中获取所有方法,即ASP.net中的DLL文件?

时间:2012-05-08 07:59:09

标签: c# asp.net dll methods reference

我已经使用3种方法从ClassLibrary Project创建了一个DLL,但它只显示了该DLL文件中的一个方法。为什么会这样?为什么我看不到DLL中的所有方法?我已经更新了构建ClassLibrary项目并再次在Web项目中引用但仍然只在3Methods中显示了一种方法。 Plz帮助......!

在DLL文件中3Methods: 方法1:

private DataTable SearchConstituencyDetails(int ConstituencyNumber, int Partnumber, int SerialInPart, string tabltoconnect, string conString)
{
// Some code here
}

方法2:

public DataTable NameSearch(string searchExpression, string sAge, char language, string conString)
{
//Some code here
}

方法3:

private DataRow SearchConstTable(int ConstituencyNumber, int Partnumber, int SerialInPart, string conString)
{
//some code here
}

但是我只能回溯:公共DataTable NameSearch(字符串searchExpression,字符串sAge,char语言,字符串conString)方法来自asp.net项目中的这个DLL而不是所有三个方法为什么这样做发生..?

1 个答案:

答案 0 :(得分:0)

将私人访问者更改为公开,它将起作用。