The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
24 views

A procedure imported by {dll} could not be loaded

I have several Unmanaged C++ written lib files which I need to link to Managed C++ dll. Then I need to invoke functions of this Managed C++ from C# application. First step is OK - Managed C++ dll ...
1
vote
0answers
25 views

Does ILASM work with Mixed Mode Application?

I am trying to modify a method in a third-party dll Use ILDASM to generate IL Modify IL method Use ILASM to generate DLL (FAILURE) I found the reason due to this error is the third-party dll ...
0
votes
1answer
41 views

Dump Referenced Assemblies

Which command line option of ILDASM dumps just the referenced assemblies? If it is not possible, is there an alternate tool/way to dump the references assemblies in a .NET DLL.
8
votes
2answers
153 views

Make type's instances non-storable

Is there a way to mark a type (or even better, an interface) so that no instances of it can be stored in a field (in a similar way to TypedReference and ArgIterator)? In the same way, is there a way ...
0
votes
0answers
47 views

where does ILDASM show the .JPG, .XML, .txt files apart from the assembly and type metadata

Could anyone please guide me as to where does the ILDASM show the .JPG, .XML, .txt files (that are added to the project) apart from the assembly and type metadata Regards
1
vote
1answer
175 views

Assembly recompilation and assembly load issue

I have an executable (Foo.exe) and a library Bar.dll. Both binaries are NOT strong name signed. The Bar.dll library depends on the executable file and has it specified in its manifest in such manner: ...
4
votes
2answers
204 views

If Powershell is built on top of .Net, what is the reason to write scripts instead of C# code? [closed]

As a person who is new to Powershell I am not 100% clear at one point: If "In PowerShell, administrative tasks are generally performed by cmdlets (pronounced command-lets), specialized .NET ...
0
votes
0answers
277 views

Guaranteed way to find the filepath of the ildasm.exe and ilasm.exe files regardless of .NET version/environment?

Is there a way to programmatically get the FileInfo/Path of the ildasm.exe/ilasm.exe executables? I'm attempting to decompile and recompile a dll/exe file appropriately after making some alterations ...
1
vote
1answer
97 views

How to insert a file g.resources into an Assembly

I need to modify an assembly changing one resource. I've already extracted the resource and modified it but now I cannot find the way to embed it again into the assembly. I've tried with ildasm but ...
1
vote
0answers
220 views

find out what references dll

I just solved the following error: System.IO.FileLoadException: Could not load file or assembly 'Microsoft.Practices.EnterpriseLibrary.Common, Version=5.0.505.0, Culture=neutral, ...
1
vote
1answer
106 views

CLR Metadata TypeDef Table Count

Consider following code: public sealed class Program { public static void Main() { System.Console.WriteLine("Hi"); } } after compiling it with csc.exe, I've open the assembly ...
4
votes
2answers
218 views

Repeatable builds from same C# source code on different machines

I am trying to produce a tool which is smart enough to programmtically examine release version binaries produced by identical C# code compiled on two seperate machinces at different times and conclude ...
0
votes
1answer
53 views

Is the order of fields in the ILDASM tree view correct or is the order in the MetaInfo correct?

In trying to determine the precise order of fields in a .NET value type, I looked both at the ILDASM tree view and at the ILDASM "MetaInfo" (i.e., the actual IL). The order of fields in the two views ...
0
votes
2answers
225 views

automated process to edit setup.exe resource strings for clickonce wpf app

We have a reasonable size application that is rolled out for N customers across Z zones for Y versions. For each of these situations each clickonce URL corresponding WCF Service URL(s) are all ...
3
votes
1answer
145 views

.NET runtime handling Generic code

How does .NET runtime handle Generic code? Are there special constructs in MSIL which enable Generic support? Can it be found out using ILDASM or Reflection? If Yes, How?
0
votes
1answer
158 views

Crash Dump Analysis: how to find the module and instruction causing the crash

I have a crash dump file and I want to identify the exact instruction where the crash occurred, more precisely in 'System_Messaging_ni+60e4e', because I suspect of a MSMQ issue. Function ...
4
votes
1answer
440 views

ildasm, then ilasm with same meta data

We need to patch an assembly and we can't rebuild from source code at the moment. I can dump the IL using ildasm mydll.dll /all /out=mydll.il and then I can rebuild it with ilasm /dll mydll.il and ...
1
vote
1answer
199 views

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 ...
0
votes
0answers
259 views

Modify the version information of a built .NET assembly

Is there a better way to modify the version information of a .NET assembly of the one I am currently using. My current approach is the following. I do disassemble the assembly with ildasm: ildasm ...
0
votes
1answer
114 views

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 myself tweaking how things are renamed. This often involves looking at the assembly in ILDASM and tracing a Type ...
0
votes
2answers
37 views

What is the impact of adding a reference on compiled code?

When I add a reference to a .dll file, what changes in the compiled output of a project? (Just imagine I have added a reference and rebuild.)
8
votes
2answers
726 views

Can we disassemble (using ILDasm) an NGen-ed assembly?

If I NGen an assembly, is it normal that ildasm still disassembles it? Ok. I wrote a HelloWorld class library and the ensuing dll is named NGenILDasmTest.dll. --> Targeted for the .Net fw 4. From ...
8
votes
5answers
4k views

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() { System.Console.WriteLine("hi"); } } This is the IL code ...
5
votes
3answers
412 views

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 additions. The code gets executed in a loop several million times. I am ...
0
votes
1answer
156 views

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 because ...
2
votes
1answer
1k views

Custom attributes are not consistent errors moving a VS 2008 solution to VS 2010

I'm trying to move my VS 2008 solution to VS 2010. Everything works perfectly (compile and link) if I keep the target framework at 4.0. When I change the framework 2.0 and change the platform ...
1
vote
1answer
238 views

Is there a tool to disassemble a single .NET type along with all of its dependencies?

Suppose I wish to disassemble a type. But this type depends on other types in the same assembly and so forth. In a sense, I wish to be able to disassemble the closure defined by a particular type. I ...
1
vote
1answer
297 views

signing unsigned interdependent third party libraries

My project uses a set of unsigned third party libraries (compiled in .Net 2.0). I already know how to sign these libraries using ildasm and ilasm. However, the problem is that the thirdparty libraries ...
2
votes
3answers
1k views

ildasm visual studio 2010

Is there a convenient method or tool available which will do the following for me from within visual studio 2010. Fire up ILDasm Load a current assembly from within Visual Studio within ILDasm. As ...
2
votes
1answer
60 views

Missing graphics when disassembling and re-assembling .net program

I have a piece of software. When I disassemble the PE file ildasm foo.exe /output=foo.il I get a bunch of files, like foo.MainForm and foo.bar.dll. When I then try to re-assemble the file ilasm ...
1
vote
3answers
292 views

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 ...
5
votes
3answers
286 views

System.Reflection - Global methods aren't available for reflection

System.Reflection does not (AFAIK) support reflecting on global methods in an assembly. At the assembly level, I must start with the root types. My compiler can produce assemblies with global ...
16
votes
1answer
1k views

Does Mono have the equivalent of ILDASM?

Is there an equivalent of ILDASM for Mono?