我可以在调用方法时从方法内部获取局部变量的值。
我调用的方法调用另一个方法并将其传递给我想要的值。有什么方法可以拦截那个电话或抓住那个价值。
这是我的代码背后的想法:
namespace test
{
class main
{
public static int Main(string [] args)
{
//This gives my the type of class I want since it is private. (this does work)
Type classTypeIWant = typeof(otherNamespace.someClassInThatNameSpace).Assembly.GetTypes()
.FirstOrDefault(t => t.Name == "ClassIWant");
//This creates an instance of the class I want using the default constructor
object classInstanceIWant = Activator.CreateInstance(classTypeIWant);
//Invoke the method
int resultINeed = classTypeIWant.GetMethod("MethodIWant")
.Invoke(classInstanceIWant, null));
}
}
}
namespace otherNamespace
{
public class someClassInThatNameSpace{}
private class classIWant
{
public classIWant
{
//stuff happens
}
public void BadMethod(int ruinLife)
{
//do stuff
//ruin value I want
return ruinedValue;
}
public int MethodIWant()
{
//this is the value I want to grab
int valueIWant = 10;
//but this method faults because of things I cannot change (I really cannot change this)
int valueIDontWont = BadMethod(valueIWant);
//it will not make it here because of BadMethod
return valueIDontWant;
}
}
}
拦截对BadMethod的调用会给出我想要的值,但我不知道是否可以这样做。
答案 0 :(得分:0)
具有BadMethod(int ruinLife)的类是最终的吗?你能修改BadMethod函数的签名以使其成为虚拟吗?如果是这样,您可以使用不执行任何操作的虚拟方法覆盖该方法。所以:
public class newClass : classIWant
{
public newClass() : base()
{
}
public override void BadMethod(int ruinLife)
{
// Do Nothing
}
}
然后只是实例化你的类而不是其他类。请注意,这仅在您可以将BadMethod设为虚拟或已经是虚拟时才有效。如果没有,这种技术将不起作用,因为使用“new”而不是“override”将不起作用。