我有一个命名空间,如下所示。
namespace testnamespace
{
public class testclass : System.Web.UI.Page
{
public static string testData;
public void test()
{
string s = "fgdfgdg";
}
protected string Invoke(string methodname)
{
//string methodName = "test";
string classname = methodname.Split('-')[0];
string funcname=methodname.Split('-')[1];
Type type = Type.GetType(classname);
Activator.CreateInstance(type);
MethodInfo method = type.GetMethod(funcname);
string result = (string)method.Invoke(Activator.CreateInstance(type), null);
return result;
}
public static string testfunc(string temp)
{
hdnData = temp;
string strval= Invoke(s);
return strval;
}
}
}
我在另一个应用程序中引用了这个 dll,如下所示。
using testnamespace;
protected void Button1_Click(object sender, EventArgs e)
{
string test='testfunction';
string s=testfunc(test);
}
当我将函数声明为公共时,我得到了错误
“非静态字段、方法或属性需要对象引用”
但是当我将它声明为公共静态时,我可以访问该函数以及所有其他函数,变量需要声明为静态。我不希望该类的所有函数都是静态的,而只是函数 testfunc。我怎样才能做到这一点?