调用具有属性的方法传递特定字符串数据而不反射

时间:2015-06-18 11:50:24

标签: c# asp.net-mvc invoke method-call

我需要调用具有特定属性的方法传递一些字符串数据。对于下面的设置,如何在不使用反射的情况下调用(调用)具有“调用此方法”属性参数的方法?顺便说一句,我使用ninject作为IoC。

public interface ISomeInterface
{
    int Method1();
    int Method2();
}

public class SomeClass: ISomeInterface
{
    [SomeAttribute("Do not call this method")]
    public int Method1(){
       return 1;
    };

    [SomeAttribute("Call this method")]
    public int Method2(){
       return 2;
    };
}   

0 个答案:

没有答案