Tagged Questions

11
votes
2answers
289 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 ...
3
votes
1answer
1k views

Microsoft CCI - resources, references for writing compilers

Some time ago, I was working on compiler, I've used System.Reflection to generate code (IL) from my AST. Now, I've an idea for another compiler that I'd like to work on (it will be another pet ...
0
votes
1answer
143 views

Common Compiler Infrastructure: How to work with ICustomAttribute

I'm attempting to use CCI-Metadata for creating a code generator, by iterating over a set of assemblies, discovering the types and their metadata and then generating the code. I would like to be able ...