Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以通过反射找出有关 Method 主体的任何信息?
如何?
您可以使用MethodInfo.GetMethodBody.
MethodInfo.GetMethodBody
这使您可以访问任何您想要的东西......如果您愿意自己完成 IL 等工作。
Mono Cecil 库可能会提供更多帮助——我自己没有使用过。
谈到 Mono.Cecil,如果您曾经使用 ILDASM 窥视过 .NET 程序集,它将让您以一种看起来非常熟悉的方式访问方法主体。