reflector
How do I debug an obfuscated executable?
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[详细]
2023-01-19 18:40 分类:问答Can .NET dissemblers like Reflector access the comments in the origial source code?
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[详细]
2023-01-17 18:52 分类:问答Is there any concept in c++ like reflector in .Net?
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?[详细]
2023-01-16 09:19 分类:问答How to restore information about partial class from DLL?
DLL contains partial class DisPart defined in two places: public partial class DisPart { public static string s;[详细]
2023-01-15 12:19 分类:问答HashSet equality c#
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?[详细]
2023-01-14 20:29 分类:问答How to make Reflector not Choke on new syntax
Is there a way to make reflector disassemble back to the new c# constructs? Auto-Implemented properties are coming out like this:[详细]
2023-01-12 08:24 分类:问答How do I create an installer for a .NET winforms application so it doesn't need to install?
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[详细]
2023-01-08 03:41 分类:问答Reflector Not Decompiling 'System.Data.Entity.dll' .NET 4.0
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 开发者_运[详细]
2023-01-07 16:24 分类:问答Find the approximate disk spaced used by a specific class in an assembly
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.[详细]
2023-01-06 06:34 分类:问答Why check this != null?
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[详细]
2023-01-05 16:05 分类:问答