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

learn more… | top users | synonyms

0
votes
0answers
27 views

Mono.Cecil invoke generic type constructor

Using Mono.Cecil I have injected a type looking something like this: internal class InjectedDelegateCommand<TParameter> : ICommand { // Fields private readonly ...
2
votes
1answer
17 views

Mono.Cecil GetTypeReference to ICommand

The System.Windows.Input.ICommand interface has been Type Forwarded as of .NET 4.5 from being in PresentationCore.dll to System.dll. I have 2 issues: How can I import this interface so I can use it ...
2
votes
1answer
50 views

Emit call to System.Lazy<T> constructor with Mono.Cecil

I'm trying to emit a method that instantiates a System.Lazy and failing with a PEVerify error of "Invalid token", at the line newobj instance void class [mscorlib]System.Lazy`1<class ...
0
votes
0answers
47 views

Maintaining context of type arguments with Mono.Cecil

After learning how to properly access the fields and properties of a List with Mono.Cecil, it was pointed out that you need to make sure that the context of the type arguments is maintained on the ...
0
votes
0answers
60 views

How to use Mono.Cecil to parse IL Instructions from byte array

I am dynamically compiling source code using CodeDOM, now i want to work with the generated IL code of a particular method using Cecil, CodeDOM provides me with the IL code of the method as a byte ...
6
votes
1answer
255 views

Accessing properties on System.Collections.Generic.List

Using Mono.Cecil I can iterate over the fields on System.Collections.Generic.List (_items, _size, _version, etc.), however if I try to use them I always get the exception Member 'T[] ...
0
votes
1answer
32 views

Mono.Cecil Instantiate dynamically created type

How do I create an instance of a type I've just created with AssemblyDefinition/TypeDefinition (I mean in runtime)? Currently, I save the created assembly as a file, read it with ...
0
votes
0answers
52 views

Mono.Cecil get constructor for TypeReference

I'm trying to create a List<Simple> using Mono.Cecil. I have a TypeReference for this, but I'm not able to produce the correct results. Given: var listOfObjConstructor = ...
0
votes
1answer
70 views

Mono.Cecil - obfuscated malicious code

In this great article (http://eatplayhate.wordpress.com/2010/07/18/mono-cecil-vs-obfuscation-fight/) the author claims that Mono.Cecil It’s not perfect, but it translated a good 90% of the functions ...
0
votes
1answer
45 views

Mono.Cecil Import List Enumerator

I'm doing a bit of IL weaving with Mono.Cecil, and I'm running into this issue: Member 'System.Collections.Generic.List`1/Enumerator' is declared in another module and needs to be imported How do ...
0
votes
0answers
44 views

Mono.Cecil Could not resolve assembly

I found a bug in Mono.Cecil I open a specific dll by AssemblyDefinition.ReadAssembly(inStream) and then save it instantly by assembly.Write(outStream), it throw a BaseAssemblyResolver exception at ...
0
votes
0answers
32 views

May I use Mono.Cecil with IL Language Directly [closed]

(I'm sorry that my English is poor, but I will try my best...) Is there any approach that I can use Mono.Cecil with IL language directly? I want to write a secondary compiler to support inline IL ...
0
votes
0answers
32 views

How do I modify an extern method with Cecil?

I have this method: public extern void test(); I'm getting a TypeLoadException because the method 'test' has no implementation (no RVA) with this code: var x = ModuleDefinition.ReadModule (typeof ...
0
votes
1answer
86 views

Mono.Cecil write library Target framework 3.5 - it writes reference to mscorlib 4.0

I'm trying to inject code to an existing assembly compiled for .NET Framework 3.5 using Mono.Cecil This is the application structure Console Application --> compiled v4.0 ...
0
votes
1answer
61 views

Targetted architecture of .NET assembly using Mono.Cecil

Can I find whether a .NET assembly has been specifically build for 32 or 64 bits using Mono.Cecil? Or any other way of finding out without having to load the assembly first.
0
votes
0answers
26 views

How to convert CustomAttribute Constructor to il codes

I'm trying to implement my own aop-framework (like PostSharp). And stuck with one problem. Say there is an attribute: [AttributeUsage(AttributeTargets.Method)] public class LogAttribute : Attribute ...
2
votes
1answer
114 views

Get “System.IO.FileNotFoundException” error after use Mono.cecil modified the assembly

To re-produce the problem, I created such simple class, and this file will be compiled as "SourceDLL.dll". namespace SourceDll { public class Class1 { static public int Add(int b, int ...
2
votes
1answer
212 views

(Unresolved:) Using Mono.Cecil with .NET CompactFramework on Windows Mobile devices

I am trying to port Mono.Cecil to work with the .NET CompactFramework 3.5 on Windows Mobile 6 devices. Firstly I had to make a couple of odd tweaks to the source code of Mono.Cecil (from its github ...
0
votes
0answers
35 views

Adding a setMethod to a PropertyDefinition for making an existing Property R/W

I am taking an existing readonly property as PropertyDefinition and trying to add a Setter to make it a r/w property. Below is the code used and even though it's not throwing any error, my property ...
0
votes
1answer
28 views

Modify readonly fields in CECIL

I have below field declaration in one of my class private readonly string name = "some name"; How we can remove the readonly in the assembly during run time using FieldDefinition or some other way? ...
0
votes
2answers
168 views

Building a (non-PCL) Monotouch or .net dll from a single .csproj

Code reuse across .NET and Monotouch has been addressed in many ways, but most techniques involve parallel sets of projects/solutions. I'd like this question to clarify whether it is possible to ...
0
votes
1answer
20 views

CECIL IsGenericInstance not returns correct value for out put parameter

I have below method with nullable parameters in which 2nd one is out too public static void MyMethod(Nullable<System.Int32> i_ReportID, out Nullable<System.Int32> i_MenuID) { ...
2
votes
1answer
70 views

Mono.Cecil How to define an output parameter

I want to add a new method via Mono.Cecil which has an output parameter, like: private static bool XXXXX(out Int32 a) I tried the following codes to add this parameter TypeReference typeInt32 = ...
1
vote
1answer
171 views

IL to c# conversion

I'm working on a project which has very little in the way of testing and where large amounts of the code has recently been changed. In particular code has been ported from using one data provider to ...
0
votes
0answers
62 views

Mono linker error linking framework assemblies in Hello World

Same problem as this guy: http://lists.ximian.com/pipermail/mono-devel-list/2011-May/037580.html C:\monotest>type test.cs public class Test { public static void Main() { ...
1
vote
1answer
56 views

Debugging modified Assembly

I modified an Assembly using CECIL and saved both Assembly and its pdb back to disk. Now, is there a way to generate code file, i.e. c# file, from this modified Assembly and able to debug to that file ...
3
votes
1answer
54 views

Mono cecil SaveSymbols(); in ver- 0.9.5.0

There was a AssemblyDefinition.MainModule.SaveSymbols(); But in version 0.9.5.0, how we can save a .pdb file before saving an AssemblyDefinition. //Here to add the command for save the .pdb file ...
2
votes
1answer
106 views

How can I find a variable in a method body by type using mono.cecil?

I've had a look around the cecil questions here and I haven't seen anything regarding this particular question. What I am trying to achieve is find a variable in method.Body.Variables that is of a ...
0
votes
1answer
71 views

How to remove a cecil instruction

I have below method public int Test() { ExternalClass cls = new ExternalClass(); return cls.ExternalMethod(); } I need to make it like below using IL Injection. Just see that I passed the ...
2
votes
0answers
124 views

Trying to inject Elmah error logging using Mono.Cecil

I am using a third party assembly, which unfortunately swallows its exceptions, so I've decided to rewrite the assembly (fortunately it's not strongly typed) using Mono.Cecil (discovered this gem ...
0
votes
0answers
30 views

Are the Ids in Mono.Cecil.PE.ResourceEntry.Id well known and per resource type?

I am trying to solve an issue with ilrepack, which uses cecil. Are these Ids are well known and related to the type of resource embedded. I'd like to know where in the MSDN they are documented as ...
2
votes
1answer
177 views

adding a new constructor to “existing” type with mono.cecil

I am trying to add new overloaded constructor to an existing type. I tried to do it with emit namespace, however created type doesnt inherit the base class and all other methods. And after reading ...
0
votes
0answers
106 views

Default value of a type using Mono Cecil

I have a method to return default value of any Type based on Reflection like below private object getDefault(Type type) { object defaultValue = null; //I have some specific logics here ...
0
votes
1answer
99 views

Get mem address of a Method's body whose assembly is loaded through Assembly.load

I have loaded an assembly B into the appdomain of assembly A using Assembly.load(). B has a method named "X" which i need to retrieve its memory address/pointer. I understand that B is mapped into ...
0
votes
1answer
83 views

How to save changed assembly using mono cecil?

I have a version of cecil which does not have which does not have AssemblyFactory class probabaly it is 0.9 th version of cecil class
0
votes
0answers
89 views

How to change assembly name of dll pragmatically using Mono.Cecil?

I am new to Cecil class library. Found that documentation is not available for cecil. I now need to change Assembly name of dll given CashCountingLibrary.dll to LibCashCounter.dll How can I do it ...
0
votes
0answers
68 views

Mono.Cecil.Pdb always breakpoint on first line

If created a "postcompiler" for c# for special Cominterfaces. But thats not the point. The problem is that I still wanted to have to possibilty to debug my code. So I created searched on google and ...
2
votes
1answer
120 views

ILSpy “Failed to resolve assembly” in AstBuilder

I want to decompile a method in my assembly, which references e.g. 'Microsoft.SharePoint.dll', but I have no SharePoint installed on the machine. If I use the following code I get an ...
1
vote
0answers
165 views

Getting field values using mono.cecil?

I have the following class and I want to change the initial values of the variables using mono.cecil. is it possible to change the values ,if so please guide me as i am new to mono.cecil? Please help ...
0
votes
1answer
90 views

Mono.Cecil Modifying the RVA of a method

I would like to modify the RVA of a method using Mono.Cecil. I noticed a similar question asked back in 2007 but is this doable in 0.95? For eg: methodA.RVA = 0x1234; I understand Mono.Cecil ...
0
votes
1answer
97 views

Mono.Cecil get/resolve RVA of method after method insertion

How do i resolve the RVA of the method i have injected without reloading the entire module? I am always getting 0 as the RVA of the added method. Is there anyway to retrieve the RVA without writing ...
1
vote
0answers
82 views

How to get the parameters of the method with value using mono.cecil?

Is it possible to get the values of method parameters using mono.cecil. I am doing interception of the method calls let me know whether it is feasible?
0
votes
1answer
121 views

How to add custom attribute that take Type as an argument

I want to use Mono.Cecil to add a custom attribute to a method. The constructor of the custom attributes has a System.Type. I'm trying to figure out how to create such a custom attribute with ...
4
votes
1answer
225 views

.NET CIL manipulation of evaluation stack

I have this sequence of CIL codes which I injected through the use of Mono.Cecil. However, the modified .NET C# application will not run. Objective: Manually load and pop values from stack to ...
1
vote
1answer
284 views

“Error 'System.Void Mono.Cecil.AssemblyDefinition::.ctor()' is declared in another module and needs to be imported”

I am using latest version of Mono.cecil What I am trying to do is I am having Custom Attributes in a seperate dll and I want to add the attributes to every method in the sample.exe using mono.cecil ...
5
votes
1answer
170 views

Emitting function with optional parameter

I have the following C# code: public static double f(double x1, double x2 = 1) { return x1 * x2; } And here it's IL code (ILSpy): .method public hidebysig static float64 f ( ...
3
votes
1answer
182 views

Emitting delegate function call

I have the following C# code: public static double f2(Func<double, double> f, double x) { return f(x); } And here it's IL code: .method public hidebysig static float64 f2 ( ...
2
votes
1answer
248 views

Mono.Cecil: injecting try/finally?

Good overview of implementing try/catch in Mono.Cecil was answered here, but he stops just short of a full try/catch/finally. So how do you implement try/finally using Mono.Cecil?
0
votes
1answer
103 views

Resolving assemblies Silverlight vs .Net in Mono.Cecil in MSBuild task

I'm using Mono.Cecil from a MSBuild task and I've encountered a problem with the way it resolves assemblies. It is picking up the .Net version of Prism instead of the Silverlight one. The .Net version ...
0
votes
0answers
82 views

Add / Delete / Manipulate Sections on Managed Files?

While I'm browsing on Pastebin for C# code :) I found an interesting class. Its a Class to Add an New PE Section to an Native Executable file , the class works fine on Native Files like ...

1 2 3