0
votes
3answers
49 views
Reflector doens’t show class implementation
Hi, I'm trying to decompile a library but when I click on a class name or a method name, the implementation code is empty.
For example:
public bool MethodOne(string str)
{
// …
3
votes
3answers
149 views
Does anyone know of a free tool to integrate Reflector with Visual Studio, besides TestDriven.NET?
Dear ladies and sirs.
I love the Go to Reflector menu option installed by TD.NET. However, TD.NET is not free for commercial use and so I do not have it at work.
I am wondering i …
3
votes
3answers
87 views
Overloading the ++ and — operators in c#
It appears in C# you can not override the post decrement operator?
I was "reflectoring" and ran across some code that reflector translated to decimal.op_Decrement(x) and I was tr …
0
votes
4answers
61 views
Static analysis of .net assembly
I have a C# project for which I need to find the all private methods which are not called from any other public method directly or indirectly.
In addition, for each private method …
3
votes
13answers
583 views
Why do people disassemble .NET (CLR) binaries?
I'm somewhat new to .NET but not new to programming, and I'm somewhat puzzled at the trend and excitement about disassembling compiled .NET code. It seems pointless.
The high-lev …
0
votes
2answers
24 views
Disassembling WPF4 beta2 DLLs with Reflector
Hi there,
I'm trying to disassemble some of the DLL of the new WPF4 Beta2 framework. However, all I have is empty methods for all types. I'm not having this problem for other DLL …
0
votes
3answers
63 views
Where do Label_ markers come from in Reflector and how to decipher them?
I'm trying to understand a method using the disassembly feature of Reflector. As anyone that's used this tool will know, certain code is displayed with C# labels that were (presuma …
1
vote
0answers
30 views
Clutter in mixed C++/CLI assemblies
Is there any way to hide native placeholder definitions from the managed metadata (visible in Reflector)?
I'm creating a mixed-mode C++/CLI assembly containing some files compiled …
0
votes
3answers
73 views
Partially disassembling .net executable.
Hello. I need to write a relatively small program to parse .net executables and generate the list of calls to external methods. For example if System.Console.WriteLine is called in …
3
votes
1answer
87 views
.NET Reflector for Mono
Is there an equivalent of .NET Reflector for Mono? Quick googling did not find anything... Or can I run Reflector on Mono (say, in Mac OS X)?
1
vote
2answers
32 views
Is it possible to see a member variable’s hard-coded value using a disassembler like Reflector?
Given the example source code below, is it possible for someone to see the value of _secret using a disassembler? I didn't see a way to get at the value via Reflector, but I haven …
1
vote
2answers
44 views
Is it possible to extend the “Analyze” feature of Reflector?
Hi There,
Does anyone know if it's possible to extend the analyze functionality of Reflector? When you select a type and click "Analyze" and then in that analyze window you get t …
-3
votes
3answers
218 views
using .NET Reflector on a C# DLL get below unreadable code, how do I correct this class?
The Errors are in public IEnumerator GetEnumerator() and private sealed class d__0
Could you Gurus help to convert those unreadable/understandable code into something I or compile …
0
votes
3answers
70 views
Scope and how to narrow it using VB.Net
If I want to narrow scope of a variable in C#, I can introduce additional braces - i.e.:
class Program
{
static void Main(string[] args)
{
myClass x = new myClass( …
0
votes
3answers
45 views
Read (to understand) hexa code in Project that decompiled by Reflector
I used .NET reflector 5.1.5.0 to decompiled a file have extension: .exe.
After export to project, I have some classes with many "special" characters :(
For exampe:
Label_065C (w …
