reflector Questions
4
Solved
When I'm debugging or even coding, it would be really uesful to examine third party assemblies but I can only see their metadata.
Given that tools like reflector can decompile assemblies, is ther...
Gauffer asked 20/3, 2010 at 2:31
4
Solved
Is it possible to use .NET Reflector (or an other tool) to modify and recompile the code quickly (that is, without dumping the source and then use Visual Studio to recompile it)?
Strangulate asked 17/2, 2010 at 10:33
5
Solved
Given a DLL file, I'd like to be able to find all the calls to a method within that DLL file. How can I do this?
Essentially, how can I do programmatically what Visual Studio already does?
I don'...
Gordie asked 30/3, 2011 at 17:44
2
Solved
Actually the question should be why does Console.WriteLine exist just to be a wrapper for Console.Out.WriteLine
I found this little method using intellisense, then opened .NET reflector and 'decom...
Interfile asked 19/7, 2009 at 2:56
12
Solved
Suppose you have an interface defined in C#. What is the easiest method to find all classes that provide an implementation of the interface?
The brute force method would be to use "Find References...
Venola asked 6/3, 2009 at 20:53
6
Solved
I have an application written in C# (without the source of course), that needs to be changed a little bit. For example, I need to stop a few lines of code that create an unnecessary menu. So I thin...
Claw asked 26/8, 2013 at 5:10
4
Solved
When I installed .NET Reflector for the first time, it was as easy as unzipping it, dragging the folder to the appropriate place on my disk, and launching it. From within the UI, I was able to conf...
Merrymerryandrew asked 27/6, 2011 at 4:10
9
Is there a way (reliable and preferably not commercial) to prevent from Reflector to reflect my source code???
Thanks,
Adi
Millepede asked 15/12, 2008 at 12:13
6
Solved
Occasionally I like to spend some time looking at the .NET code just to see how things are implemented behind the scenes. I stumbled upon this gem while looking at the String.Equals method via Refl...
2
How do tools like the Red Gate Ant Profiler or the Reflector convert IL into C# or VB.NET code?
I recently noticed that the Red Gate Ant Profiler does not generate the same source code that was wr...
Brandabrandais asked 21/1, 2014 at 22:30
2
Solved
Currently when I have a class type and need to know if the class can be created. I will call Activator.CreateInstance(type); and throw away the result.
This seems very inefficient and problematic....
Manciple asked 26/10, 2013 at 20:25
6
Solved
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
Given that a C# assembly can be easily reverse engineered using reflector, where should I store my sensitive data when compiling an assembly in C#?
I have a X509certificate embedded in my C# assem...
2
Solved
I will like to see the value of some private variables of the Regex class located on System.dll. If curious why I will like to twick that class look at this question.
So I will have to decompile C...
Rochellerochemont asked 30/7, 2012 at 17:59
2
Solved
I had to de-compile some code and I don't know what this syntax is? Can y'all help, or point me to a write-up about what it is? I've Googled and searched this site and can't find anything.
Just on...
Traitor asked 16/6, 2012 at 22:5
9
I used to love .NET Reflector back in the day, but ever since Red Gate Software took over it has gone downhill dramatically. Now it forces me to update (which is absolutely ridiculous), half ...
4
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();
x.MyProperty = 1000;
Cons...
2
Solved
I am trying Infer.Net (An F# Library for Probabilistic Programming)
And running the examples in VS11 Beta lead to the error :
Could not load file or assembly 'FSharp.Core, Version=4.0.0.0,
Cult...
4
Solved
Is there anyway to prevent people from using Reflector.net to decompile my .exe c# application? I know there is a tons of post about this but I don't really care if people can see my code the only ...
Driggers asked 3/1, 2012 at 20:22
1
Solved
To get an overview for the CodeDom classes in .Net I tried to create a class diagramm using Visual Studio 2010 built-in class designer, but I did not find the way how I could feed the .Net built-in...
Magen asked 16/11, 2011 at 12:52
7
Solved
Does anyone have experience with .NET Reflector Pro (not the free version)?
I have searched for some way to easily debug an application in an external environment (e.g. a production server that is...
9
Solved
For a while we were using a tool called CodeVeil. I'm just wondering if there are better alternatives out there.
Edit: Before more people misunderstand the question, I'm aware that a determi...
Ricker asked 20/9, 2008 at 2:15
10
Solved
Just to ask if anyone knows of an open source alternative to RedGate's Reflector? I'm interested in checking out how a tool similar to Reflector actually works.
Note, if you know of a fr...
Polyphony asked 11/3, 2010 at 15:0
1
Solved
I am looking at an enum I created in Reflector and there is a public integer field called "value__".
What is the purpose of this member?
A link or reference to a document is fine for an answer.
...
2
Possible Duplicate:
Open Source Alternatives to Reflector?
Since March, this tool is no longer free even for all its old versions. Any alternatives?
1 Next >
© 2022 - 2024 — McMap. All rights reserved.