I have an obfuscated executable and I want to debug the EXE.开发者_JAVA技巧 I\'ve tried to look into the source code with the .NET Reflector. While looking into the source, an internal exception has b
the comments are no开发者_高级运维t XML comments, just normal commentsNo. Comments are ignored by the compiler and have no representation in the assembly.A disassembler can\'t get the original source
i like to get code from c++ dll ,i know we easily get from .Net dll by reflector. Is there any method available in c++ for t开发者_开发技巧his?
DLL contains partial class DisPart defined in two places: public partial class DisPart { public static string s;
I have a HashSet with it\'s own EqualityComparer, but I am wondering if a simple count of both sets is used before checking each element?
Is there a way to make reflector disassemble back to the new c# constructs? Auto-Implemented properties are coming out like this:
I\'m responsible for an in-house application that is deployed as a ClickOnce application. We run into issues reasonably frequently when a developer runs the tool after aa several new versions have be
When looking at the System.Data.Entity.dll for .NET 4.0, no methods are being decompiled. I only see the method stubs. I tried re-installing reflector but it still didn\'t work. I am able to 开发者_运
Is it possible to determine the disk spaced used by a class, namespace or method in an assembly? For example in Reflector you can see the number of bytes used by resources in the selected assembly.
Occasionally I like to spend some time looking at the .NET code just to开发者_C百科 see how things are implemented behind the scenes. I stumbled upon this gem while looking at the String.Equals method