如何在c#中从应用程序外部访问命名空间的功能?

时间:2013-05-14 05:24:24

标签: c#

我有一个命名空间,如下所示。

 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);
        }

当我将该函数声明为public im getting error

  

“非静态字段,方法或者需要对象引用   财产“

但是当我将其声明为public static时,我可以访问该函数以及所有其他函数,变量需要声明为static。 我不希望该类的所有函数都是静态的,只是函数testfunc。我该怎么做?

1 个答案:

答案 0 :(得分:2)

要调用静态函数,首先应指定类名。否则编译器将不知道调用哪个方法。在您的示例中,替换:

string s=testfunc(test);

string s = testclass.testfunc(test);

在调用method.Invoke(...)时,您还应提供有效参数,匹配方法的签名,否则您将获得运行时异常。

虽然我不知道,为什么会创建这样的设计(你也不会在你的测试课后面解释你的想法),这对我来说看起来像“糟糕”的设计。