Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Are there API tools within the core .Net framework (any version) which help in decompiling code?
Note: I am not looking for an external tool (such as reflector or dotPeek), I am coming from the direction of trying to build an external tool.
If you are looking for a decompiler with public source code, I believe ILSpy is what you are looking for.
ILSpy is an open source decompiler and you can download the entire Solution from the project's GitHub.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
i have a asp.net project and i want to encrypt my dll's files in bin bu using some thing like "obfuscator" but the problem is obfuscator is not free is there any way or any other tool can do it ?
Regards
.NET obfuscation tools/strategy
Obfuscation and Protection
SharpObfuscator
Obfuscar, The Open Source Obfuscator for .NET Applications
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am new to .NET application development. Involving one project, there are three modules like Interface layer, Business layer, and Data layer; I built these and I got .dll file.
But I lost the source code of one .dll file.
I'd like to extract the .dll and get the same source code. Is it possible to extract my source code from the .dll file?
I really like JetBrains dotPeek, it's free and easy to use.
Used it for same purposes
Try ILSpy, an open-source .NET assembly browser and decompiler (it requires the .NET Framework 4.0).
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Do you know any opensource libraries for DJVU? I can't find anything useful.
One of the most rated DjVU library is here:
DjVuLibre
However is in C++.
I created an open source Djvu library which is written in C#. It needs to be optimized a bit, but is fully usable. https://github.com/Telavian/DjvuNet
As for open source DjVuLibre mentioned by Steve, you could find some pointers how to use it from .NET here - Creating simple c++.net wrapper. Step-by-step
As for paid libraries - you could look at: Caminova DjVu SDK for .NET Framework. This is not too expensive.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Can anybody suggest me a good documentation tools with easy use GUI for C#
I think you should go for sandcastle instead. It is an open source project run by Microsoft.
NDOC is a very good tool and can be eaisly used with GUI.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Have you seen library for flexible working with terminal(Unix like)?
I want to implement autocompletion, history, help params in my console application same operations you can see in the Unix terminals.
C#, Mono library.
Thanks.
Here you go, GNU Readline support for Mono, Mono-Readline.
See also, Is there a .Net library similar to GNU readline?