标签: c# reflection
我试图通过编写另一个c#代码来读取在类文件中编写的c#代码的内容。例如,
public static int GetValue() { int tempValue = 10; return tempValue * 5; }
是我班上的代码。我可以使用Reflection获取这些类下的可用类和方法。但是我无法获得表达式来找到方法中的逻辑。有没有办法做到这一点?
感谢 维涅什