ildasm
How do I Obtain Code Coverage on Assembly after ExportDll has run it through ildasm/ilasm?
I\'m using a post-build step on my C# assembly to expose a function signature from my dll.This step uses the ExportDll tool from http://www.codeproject.com/KB/dotnet/DllExport.aspx.However, if I run m[详细]
2023-04-11 21:43 分类:问答Modify the version information of a built .NET assembly
Is there a better way to modify the v开发者_如何学JAVAersion information of a .NET assembly of the one I am currently using.[详细]
2023-04-10 15:09 分类:问答How to locate Anonymous Types in source code files using Visual Studio
During the process of obfuscating a .NET assembly (using Dotfuscator), I have found my开发者_如何学Goself tweaking how things are renamed. This often involves looking at the assembly in ILDASM and tra[详细]
2023-04-07 23:18 分类:问答Why is the .ctor() created when I compile C# code into IL?
With this simple C# code, I run csc hello.cs; ildasm /out=hello.txt hello.exe. class Hello { public static void Main()[详细]
2023-03-31 19:25 分类:问答disassemble c# code to machine instructions
I am experimenting with compiler performance. I have a very small piece of code, just a few floating point multiplications and 开发者_Python百科additions. The code gets executed in a loop several mill[详细]
2023-03-06 09:07 分类:问答Does monodis tool from mono work against Microsoft .NET assemblies?
I know the monodis tool does the same thing for Mono that ILDASM does for Microsoft .NET. But is the monodis tool compatible with .NET in that it would work against a Microsoft .NET assembly 开发者_JA[详细]
2023-03-01 18:28 分类:问答.NET's Ildasm.exe Tool Seems To Not Be Dumping All Source Lines Out To Output File
I am creating a utility that reads the source lines of VB .NET executables my company has written.It is using the ildasm.exe utility in the following way:[详细]
2023-01-30 23:50 分类:问答ILDasm Visual Studio 2010
Is there a convenient method or tool available which will do the following for me from within visual studio 2010.[详细]
2023-01-22 07:51 分类:问答In general, how to convert ilasm syntax into Reflection.Emit calls?
I am writing a special-purpose mini-compiler and I often view disassembled CIL to figure out how to do things. But it\'s often not obvious how to translate the disassembled code to Reflection.Emit cal[详细]
2023-01-03 13:02 分类:问答Does Mono have the equivalent of ILDASM?
Is there an开发者_StackOverflow中文版 equivalent of ILDASM for Mono?Yes, monodis is Mono\'s equivalent for ildasm.[详细]
2022-12-10 09:23 分类:问答