mono.cecil
How to determine which methods are called in a method?
I\'d like to list all the methods that are called from a specific method. E.g. if I have the following code:[详细]
2023-01-23 05:37 分类:问答Can Mono.Cecil modify code already loaded in the AppDomain?
I want to add some behavior to a certain class at runtime. I know how to subclass at runtime using Reflection.Emi开发者_JS百科t but that\'s not enough. Depending on some external configuration I need[详细]
2022-12-28 17:23 分类:问答What do these properties mean in Mono.Cecil?
I am using Lokad shared libraries, which in turn depends on Mono.Cecil. I am a little confused what the following properties mean (they are to do with .NET internals and thus have equivalent .NET int[详细]
2022-12-20 22:49 分类:问答How to tell from a CIL instruction whether a field is read or written to?
I am currently using Mono Cecil to extract data from C# projects. Now I need to check whether a field is read or written to in each method.[详细]
2022-12-15 05:40 分类:问答Detect Silverlight version required by an assembly
How can I tell whether Silverlight 2 is sufficient for an assembly or Silverlight 3 is required? I have all information that is available through reflection (Mono.Cecil).[详细]
2022-12-13 06:46 分类:问答Detect whether the assembly was built for .NET Compact Framework
Having a .NET asse开发者_如何学Pythonmbly, how can I detect whether it was built for .NET CF or a full framework?It\'s quite simple:[详细]
2022-12-13 06:46 分类:问答Preprocessing C# - Detecting Methods
I require the ability to preprocess a number of C# files as a prebuild step for a project, detect the start of methods, and insert generated code at the start of the method, before any existing code.I[详细]
2022-12-11 07:19 分类:问答