c# Programming Glossary: ildasm
Is there a workaround for generic type constraint of “special class” Enum in C# 3.0? [duplicate] http://stackoverflow.com/questions/1404077/is-there-a-workaround-for-generic-type-constraint-of-special-class-enum-in-c-s EDIT A library is now available supporting this via ildasm ilasm UnconstrainedMelody . Members of the C# team have previously..
C# Event handlers http://stackoverflow.com/questions/26877/c-sharp-event-handlers static void Hook2 someEvent Program_someEvent And then ran ildasm over the code. The generated MSIL was exactly the same. So to..
Detect compiler generated default constructor using reflection in C# http://stackoverflow.com/questions/3190575/detect-compiler-generated-default-constructor-using-reflection-in-c-sharp an explicit default constructor and one without. Then run ildasm on the assembly the metadata of the two constructors is identical...
comparing products of builds in release http://stackoverflow.com/questions/319864/comparing-products-of-builds-in-release differ immaterially wipe those bytes and then compare Use ildasm to convert the assemblies to text and then compare those results...
Why does List<T> implement IList<T>, ICollection<T> and IEnumerable<T>? http://stackoverflow.com/questions/3224081/why-does-listt-implement-ilistt-icollectiont-and-ienumerablet IBar IFoo class FooBar1 IBar class FooBar2 IBar IFoo Both ildasm and Reflector show the same information for FooBar1 and FooBar2..
string = string + int: What's behind the scene? (C#) http://stackoverflow.com/questions/3398604/string-string-int-whats-behind-the-scene-c String.Concat string string To discover this you can use ildasm or Reflector in IL or in C# with no optimizations to see what..
Reflection for F# units of measure http://stackoverflow.com/questions/4005474/reflection-for-f-units-of-measure It was for 2008 but if you check some code like bellow in ildasm you cannot see anything about Units of Measure . Learn more.. length float m time float cm length time The ildasm output .method public static float64 CalculateVelocity float64..
Is is possible to export functions from a C# DLL like in VS C++? http://stackoverflow.com/questions/4818850/is-is-possible-to-export-functions-from-a-c-sharp-dll-like-in-vs-c question I've seen people do this before but it required ildasm adding the MSIL .export directive and then reassembling. A program..
A .net disassembler/decompiler [closed] http://stackoverflow.com/questions/578883/a-net-disassembler-decompiler like to take a look to see what it's doing. I know that ildasm comes with the Visual Studio installation so I can get at the..
MissingManifestResourceException when running tests after building with MSBuild (.mresource has path in manifest) http://stackoverflow.com/questions/7080737/missingmanifestresourceexception-when-running-tests-after-building-with-msbuild have tracked the problem down into the generated IL I use ildasm . When bulding in Visual Studio the following is set in the..
|