Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

http://www.mono-project.com/Cecil:FAQ

http://blog.paul-mason.co.nz/2009/08/protecting-your-precious-code-monocecil.html

http://www.dimecasts.net/Casts/CastDetails/59

share|improve this question

4 Answers

up vote 41 down vote accepted

Eh, after a few hours of googling, I conclude that apparently Mono.Cecil officially lacks documentation... quoting an email response from the library author Jb Evain (in April 2008):

> 2) Is there a documentation for Cecil (other than source code)?

Nop. It has plenty of examples all over the place though.

That said, here are some more links and notes that might be useful:

  • the archives of the the official mono-cecil mailing list
  • some emails on the mailing list suggest learning from various open-source projects using Mono.Cecil (there's a listing of some on the mono-cecil mailing list's Google page)
  • as far as I understand from the terse FAQ you mentioned, there seem to be only six classes making the core of Mono.Cecil (as seen on a diagram), so it may be enough to just open the DLL in some Assembly Browser (like the Visual Studio's Object Browser) and watch. Quite many people seemed to praise the library for it's simplicity.
    • On the other hand, one guy expressed his concerns (email from November 2008) that the library is not so simple.

And some other more or less useful snippets, articles and other tidbits of information:

By the way, should you have some positive experience with the library in future, it would be nice if you considered starting e.g. some wiki (maybe on a free wiki hosting server) about it so that the knowledge you gained could help other people avoid the very problem we're talking about here...

share|improve this answer
2  
JbEvain has unfortunately turned down an offer by someone I know to add XML documentation to all of Cecil's types and members. :/ – romkyns Aug 5 '10 at 14:47
1  
not exactly an easy way under those circumstances, but should he be really strong, there's always the option to branch and add the comments for the public benefit in spite of author's humors - and then there's a chance that the author would regain his reason after some time, seeing the work already done. That's the virtue of Open Source, that the product becomes a public good. – akavel Aug 11 '10 at 7:51
Thanks for this collection of useful links. Saved my hours of googling! – RoflcoptrException Nov 1 '10 at 22:23
2  
While Jb wasn’t explicit about his reasons for rejecting my offer to add documentation, he did mention that he is fond of the Mono documentation system, which appears to be a website built specifically to keep documentation separate from source code. I gather from this that he has some sort of ideological stance that comments should stay out of source code. He also doesn’t provide any exception messages. I don’t want to misrepresent his position, but with his lack of communication he is not leaving much option than to speculate about it. – Timwi Mar 10 '12 at 14:27
2  
If anyone reads this and is interested in helping me get such a project fork with documentation started, please contact me as timwiterby on Skype. I would be delighted to hear from you. – Timwi Mar 10 '12 at 14:35
show 2 more comments

The real manual for all this stuff is Expert .NET 2.0 IL Assembler by Serge Lidin. It's no relaxing read, but if you're into any of this stuff, it's great.

The Common Language Infrastructure Annotated Standard is a more general book which is useful to have for overview understanding.

share|improve this answer

Try this one: http://plaureano.blogspot.com/2011/05/introduction-to-il-rewriting-with-cecil.html

EDIT: Yes, I'm the author. :)

share|improve this answer
Great blog post. – Kharlos Dominguez Feb 27 at 13:28

I have an example project at http://adrianwithy.com/2012/02/05/jiggler-add-code-to-every-method-in-assembly-with-mono-cecil-2/ called Jiggler that I use to randomize code execution to weed out multi-threaded bugs. This uses Mono.Cecil an has full source code.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.