我需要调用具有特定属性的方法传递一些字符串数据。对于下面的设置,如何在不使用反射的情况下调用(调用)具有“调用此方法”属性参数的方法?顺便说一句,我使用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;
};
}