reflector

Modify Compiled .Net Exe

烂漫一生 提交于 2019-12-22 03:22:31
问题 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 think I should comment them out. The source code is not obfuscated. I know I can completely decompile, change, and compile again, using tools like Reflector/Reflexil. But everyone knows that by doing this, many parts of code won't compile again! Is there a way in Reflector (or any other product) that a

Modify Compiled .Net Exe

↘锁芯ラ 提交于 2019-12-22 03:22:10
问题 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 think I should comment them out. The source code is not obfuscated. I know I can completely decompile, change, and compile again, using tools like Reflector/Reflexil. But everyone knows that by doing this, many parts of code won't compile again! Is there a way in Reflector (or any other product) that a

Can't load FSharp.Core version 4.0.0 in infer.net fun // hard link dependency in a dll ?

雨燕双飞 提交于 2019-12-21 20:14:07
问题 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, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. If I open the dlls used the infer.net samples in Reflector, one, probcomp.dll, says it can not find automatically "FSharp.Core, Version=4.0.0.0"and that I need to select the location by

.NET Reflector for Mono [closed]

删除回忆录丶 提交于 2019-12-21 03:21:15
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . 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: As I was looking for a Mono decompiler, I found this page and tested the answers : Mono.Cecil works great but it's a library and I was looking for a GUI ILSpy doesn't

Is there a tool like Reflector for COM libraries?

笑着哭i 提交于 2019-12-20 23:49:49
问题 Is there a tool like Reflector for COM libraries? I would like to open a COM library and browse the classes and interfaces just like in Reflector. I would rather not install Visual Basic 6.0 in order to do this, if possible. 回答1: Not in the same way however there are number of tools that allow you to examine the type library. For example OleView. You can also get a good idea of the types inside COM library by simply adding it to a .NET project. You can then use object browser to browser the

error in .net reflector

爱⌒轻易说出口 提交于 2019-12-20 06:15:24
问题 i have reflected one program with .net reflector and open it in visual studio. one item in each form is: bool IControlByOptions.get_IsDisposed() { return this.IsDisposed; } when i build solution , it has an error : 'Solo.Module.CtrlProductForm.Solo.Base.IControlByEdition.get_IsDisposed()' explicit method implementation cannot implement 'Solo.Base.IControlByEdition.IsDisposed.get' because it is an accessor. IControlByOptions file contents : using System; namespace Solo.Base { public interface

What is the purpose of the public “value__” field that I can see in Reflector against my enum?

独自空忆成欢 提交于 2019-12-19 08:31:10
问题 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. Googling is a pain because "value__" is returning hits for "value". I have been searching for nearly an hour and only found the links below. Most of these are the same article on different sites. They all show how to access the member via reflection but none of them explain what the member is for. http

What is the purpose of the public “value__” field that I can see in Reflector against my enum?

时间秒杀一切 提交于 2019-12-19 08:31:01
问题 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. Googling is a pain because "value__" is returning hits for "value". I have been searching for nearly an hour and only found the links below. Most of these are the same article on different sites. They all show how to access the member via reflection but none of them explain what the member is for. http

Reflector Not Decompiling 'System.Data.Entity.dll' .NET 4.0

狂风中的少年 提交于 2019-12-17 21:32:03
问题 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 decompile other .NET assemblies just fine. 回答1: I think your issue is that you've pointed Reflector at the metadata-only version of the assembly. A number of assemblies are installed for use by VS 2010 that contain only the metadata, not the method's IL, of the original assembly. They did this for

Finding the source DLL name from Interop assembly via reflection

佐手、 提交于 2019-12-11 05:19:34
问题 I have an Interop DLL RCW.Xyz.dll but I can't find the corresponding DLL. Because the name doesn't follow the default naming scheme Interop.Xyz.dll my guess is that the interop assembly was simply renamed. (Even if the DLL is generated by Visual Studio with a default name, if the DLL has spaces in its name, the spaces will get lost, making it hard to find the source DLL again) How can I find out the COM DLL name behind the interop assembly? I assume I need to use disassembly tools. Preferably