Search Results

2
votes
2answers
263 views

Is there a Java Descriptor like thing in .Net?

I'm working on a static analysis tool for .NET assembly. In Java, there is a Descriptor …
5
votes

What CLR/.NET bytecode tools exist?

Mono.Cecil is a great tool like ASM. It's a subproject of Mono, and totally open source. It even provides …
0
votes

How to do PDF with C#?

I use iTextSharp in projects years ago, It's very nice for normal needs, which include generate pdf on-the-fly, fill a form and flat …
0
votes

Is there a Java Descriptor like thing in .Net?

Hey, thanks Vincent. I'm now using a class to represent "return type+parameters list" info instead of a descriptor in string. Thanks for the book you recommended. Yes, I use ildasm.exe and to read …
0
votes

What are the most relevant OSS projects for .NET?

Mono.Cecil - An open source and even better replacement to System.Reflection. :) …