Tagged Questions

Mono.Cecil is a library to generate and inspect programs and libraries in the ECMA CIL form.

learn more… | top users | synonyms

22
votes
3answers
5k views

Mono Cecil documentation and tutorials?

I am new to Mono Cecil! Any comprehensive documentations and tutorials on Mono Cecil? I have seen these articles and video below, so don't give me these links again: ...
11
votes
2answers
283 views

CCI vs. Mono.Cecil — advantages and disadvantages

I have seen articles discussing these two similar frameworks, but most of them are two years old or so. I assume both projects are much more mature now than they were two years ago, and the situation ...
9
votes
3answers
3k views

Mono Cecil vs. PostSharp Core vs. Microsoft CCI for implementing AOP framework

Which is the better in terms of capabilities, easy of use, documentation, samples, community/support, VS integration, known implementations, long-term viability, and build speed to implement a custom ...
6
votes
1answer
522 views

How do I replace embedded resources in a .NET assembly programmatically?

I am trying to replace a Resource of an exe(.NET, C#) file using C# code. I have found this article: http://rongchaua.net/blog/c-how-to-edit-resource-of-an-assembly/ and made this code (using ...
6
votes
4answers
263 views

Mono.Cecil type.IsAssignableFrom(derivedType) equivalent

I'm using Mono.Cecil to find types in Assembly that are derived from given on. Normaly it can be done with IsAssignableFrom() method, but I cannot fing it's equivalent in Cecil. Is there any such ...
6
votes
4answers
1k views

Replacing instructions in a method's MethodBody

(First of all, this is a very lengthy post, but don't worry: I've already implemented all of it, I'm just asking your opinion, or possible alternatives.) I'm having trouble implementing the ...
5
votes
1answer
423 views

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.Emit but thats not enough, Depending on some external configuration I need to inject ...
4
votes
1answer
55 views

How to get attribute value for an assembly in Cecil

Is there a way to get str1 in code ? [MyAttribute("str1")] class X {} The instance of Mono.Cecil.CustomAttribute.Fields is empty.
4
votes
1answer
218 views

Finding type hierarchy assemblies using Mono.Cecil

I am trying to implement a method that receives a type and returns all the assemblies that contain its base types. For example: Class A is a base type (class A belongs to assembly c:\A.dll) Class B ...
4
votes
1answer
131 views

Mono.Cecil: Operation could destabilize at runtime

I followed the hints here, I even put the following lines in: var MSILWorker = prop.SetMethod.Body.GetILProcessor(); MSILWorker.Body.InitLocals = true; I have two properties in two classes: ...
3
votes
3answers
137 views

What is the most interesting and promising approach to implement a compiler in C#?

I am just in the beginning of my graduation project that is supposed to last for 6 months. The goal of the project is to implement a .Net-compiler for one scripting language. I had the Compiler ...
3
votes
2answers
122 views

cecil: Instruction.Operand types corresponding to Instruction.OpCode.Code value

Is there any documentation or is there a part of the cecil source code that I can consult to get a comprehensive view of which Operand types cecil will use for a given Code value? Eg: I can glean from ...
3
votes
5answers
263 views

What kind of compiler magic do we need more?

I develop lot view models which are: 1) All have to implement INotifyPropertyChanged to be bindable to UI. 2) Property setters have to raise PropertyChanged on change. 3) PropertyChanged event has ...
3
votes
3answers
265 views

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: public void test1() { test2(); test3(); } The list should contain test2() and ...
3
votes
3answers
439 views

Detect whether the assembly was built for .NET Compact Framework

Having a .NET assembly, how can I detect whether it was built for .NET CF or a full framework?
2
votes
1answer
44 views

Adding a TypeDefinition from another Assembly

This one is driving me crazy. AssemblyDefinition asm1 = AssemblyDefinition.ReadAssembly(example); AssemblyDefinition asm2 = AssemblyDefinition.ReadAssembly(example2); ...
2
votes
2answers
60 views

Adding custom attributes using mono.cecil?

I can't figure how to add custom attribute to a method using Mono.Cecil The attributes that I would want to add is like this : .custom instance void ...
2
votes
2answers
81 views

How to create an override method using Mono.Cecil?

I'm using Mono.Cecil to generate an assembly that contains a derived class that overrides a specific method in an imported base class. The override method is an 'implicit' override. The problem is ...
2
votes
1answer
56 views

Can Mono.Cecil rewrite debugging symbols as VB.NET?

After rewriting a VB.NET assembly with Mono.Cecil the 'Call Stack' debugging window in Visual Studio 2010 shows the language as C# and not VB.NET. Is it possible configure Mono.Cecil to rewrite an ...
2
votes
1answer
94 views

How to get source/line number for IL instruction using Mono.Cecil

I'm using Mono.Cecil to write a simple utility that looks for type/method usage within .NET assemblies (ex. calling ToString on enums). I am able to get find the method, but it would be cool to ...
2
votes
1answer
77 views

Does Mono.Cecil take care of branches etc location?

Well this question may seem odd but its simple - my point is if i have a "goto" (brtrue etc) in the decompiled code like example br IL_0003 call ***** IL_0003: ret and i add a command after that ** ...
2
votes
1answer
108 views

Using Mono.Cecil to add an Indexer to a TypeDefinition

I'm using JB Evain's Mono.Cecil to perform some byte-code manipulation on compiled DLL's. Part of this project is to inject properties into TypeDefinitions, effectively turning compiled ...
2
votes
2answers
150 views

KindOfMagic (INotifyPropertyChange Attributes) not working with Silverlight 5 beta?

http://kindofmagic.codeplex.com/ is a cool project to implement the INotifyPropertyChanged Interface using just Attributes instead of writing verbose property-setters. As far as I understand it is a ...
2
votes
1answer
144 views

Get generic parameters from a ByReferenceType with Mono.Cecil

I have a method which gets a parameter such as: public void Foo(ref Action<string> bar); Using Cecil to enumerate the parameters yields a ByReferenceType. Calling GetElementType() in an ...
2
votes
2answers
199 views

NRefactory has missing dlls

Heys all, I've tried to use NRefactory(Vb) https://github.com/icsharpcode/NRefactory/ but it didn't come with mono.cecil.dll so i downloaded that too, but when i merged it together the versions seem ...
2
votes
1answer
173 views

Mono.Cecil something like Type.GetInterfaceMap?

System.Reflection.Type contains GetInterfaceMap which help to determine what method implement some method from interface. Does Mono.Cecil contain something like this? Or how to implement such ...
2
votes
1answer
368 views

Where can I get Mono.Cecil.Pdb.dll?

I'm trying to write a IL Weaver with Mono.Cecil, and for it to remain debugable in VS2010, I need the PdbReaderProvider class, or some similar implementation of ISymbolProvider. I've downloaded the ...
2
votes
1answer
327 views

Injecting GeneratedCodeAttribute with Mono.Cecil

I'm manupulating my .net 2.0 assemblies with Mono.Cecil. After manipulation I want to mark assembly as processed by injecting a module attribute var stringType = _module.Import(typeof(string)); var ...
2
votes
2answers
547 views

How to inject call to System.Object.Equals with Mono.Cecil?

Using Mono.Cecil I want to rewrite the following property: public string FirstName { get { return _FirstName; } set { _FirstName = value; } } to this: public string ...
2
votes
2answers
1k views

Mono.Cecil, Missing compiler required member 'System.Runtime.CompilerServices.ExtensionAttribute..ctor'

I downloaded the latest Mono.Cecil and now whenever I start up my project it gives me that error. It goes away if I remove and add mono.cecil. But that is a pain to do every time I open my project.
2
votes
1answer
308 views

DynamicMethod in Cecil

Is there anything similar to Reflection.Emit.DynamicMethod in Cecil? Thanks. DynamicMethod Edit: What about for the following things? EmitCall (e.g. IL.EmitCall(OpCodes.Callvirt, ...
2
votes
1answer
154 views

How do I find all the type dependecies of a given type in any CLR based language assembly?

I am trying to find all the types that a given type is dependent on, including interfaces, abstract classes, enums, structs, etc. I want to load up an assembly, and print out a list of all the types ...
2
votes
2answers
653 views

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). Same question for SL 3 ...
2
votes
2answers
265 views

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. ...
2
votes
2answers
995 views

Mono.Cecil - How to get custom attributes

I am trying to use Cecil to inspect the attributes associated with a given method. It seems to find it, but I cannot get its name using the following code: AssemblyDefinition assembly = ...
1
vote
0answers
46 views

MissingMethodException when applied generic type parameters to method that returns generic parameter

I have a method called DynamicInvoke that is as follows: public static object InvokeDynamic(Delegate d, object[] args) { Type[] tparams = d.Method.DeclaringType.GetGenericArguments() ...
1
vote
1answer
91 views

mono.cecil: not able to find AssemblyFactory class

I am using mono.cecil dll and writing this code. AssemblyDefinition sourceAssembly = AssemblyFactory.GetAssembly(assemblyPath); here my project is not getting compiled because it is not able to ...
1
vote
2answers
97 views

In IMetadataImport or MonoCecil, how can I find out out if a method in an internal class is accessible from other assembiles?

One of the cases where a public method of an internal class might be accessible from outside the assembly is if the method implements interface methods or overrides virtual methods that are defined in ...
1
vote
1answer
60 views

Change application type with Mono.Cecil?

How can I modify an application from Console Application Type to Windows Application Type and vice versa with Mono.Cecil?
1
vote
1answer
89 views

Creating Events in Mono.Cecil

I've been trying to create events with Mono.Cecil, but not sure how. EventDefinition newEvent = new EventDefinition("newEvent", ...
1
vote
1answer
150 views

Mono Cecil - Initializing a local variable

I have the following method: public void DoSomething() { Console.WriteLine(""); } I want to modify this code with Mono Cecil. I want to create an instance of a custom class within the method: ...
1
vote
1answer
71 views

mono.cecil Module of BaseType is incorrect

I am loading two assemblies using AssembliyDefinition.ReadAssembly In AssemblyA I define ClassA. In AssemblyB I define ClassB : ClassA. When I inspect the TypeDefinition.BaseType of ClassB I get ...
1
vote
2answers
206 views

How can I create a new Windows Phone 7 assembly from scratch using CCI or Mono.Cecil

I am working on a tool to generate assemblies for WP7. I am doing this from the full framework. Since Reflection.Emit doesn't work with WP7 but either CCI or Mono.Cecil do I am wondering if there is a ...
1
vote
1answer
303 views

Mono.Cecil: call GENERIC base class' method from other assembly

I'm following up on my earlier question: Mono.Cecil: call base class' method from other assembly. I'm doing the same thing, but if my base class is generic it doesn't work. //in Assembly A class ...
1
vote
1answer
235 views

Mono.Cecil: call base class' method from other assembly

How can I get a MethodReference to a base class' method by name? I've tried type.BaseType.Resolve().Methods; and if I add the dll containing the base class to the assemblyresolver it returns the ...
1
vote
1answer
57 views

Reflect specific framework version?

Using Mono.Cecil if (MethodDefinition.ReturnType == AssemblyDefinition.MainModule.Import(typeof(string))) Is failing because the assembly I reading is .net 2 but my program is .net 4. So it is ...
1
vote
0answers
183 views

Post Processing of dll using Mono Cecil

I've been using Mono Cecil to do some post processing of some dlls because we want to modify the event codes that are generated by VS2010 compiler and modify them to look like the ones generated by ...
1
vote
1answer
83 views

How to determine size of a value-type using Mono.Cecil

I'm looking a way to determine size in bytes of a value type (TypeReference) in Mono.Cecil. I need it to optimize Nullable equality compare code generation. If value type size > 4, compare HasValue ...
1
vote
1answer
233 views

Inject property call with Mono Cecil

How can I inject this code into method Test() this.DialogResult = DialogResult.OK; so the method after injectin will look like public void Test() { this.DialogResult = DialogResult.OK; } Sorry for ...
1
vote
1answer
398 views

Mono.Cecil TypeReference to Type?

Is there anyways to go from a TypeReference in Mono.Cecil to a Type?

1 2