dotPeek is a .NET decompiler from JetBrains, the makers of a wide array of developer productivity tools: ReSharper, dotTrace, and dotCover for .NET developers. Also A renowned a family of IDEs for Java, Ruby, Python, PHP, and other languages and Team development tools: TeamCity for continuous integration and build management and YouTrack for issue tracking.
Questions tagged [dotpeek]
72 questions
0
votes
1 answer
Dotpeek having issue decompiling code?
As part of a reverse-engineering challenge on Hackthebox.eu I've tried to decompile a .net executable file. The entire program decompiled successfully but it has two errors. I will post below the whole method.
private unsafe void kapa(object…
0
votes
0 answers
Visual Studio 2008 Express Not compiling dll with Target framework
I have a c# project Authenticate with below configuration files, which am trying to compile with target framework .Net 2.0 for Any CPU, it keeps generating the .Net 3.5 dll instead of .Net 2.0(decompiled dll with dotPeek)
Below is my…

OTUser
- 3,788
- 19
- 69
- 127
0
votes
0 answers
how to convert the decompiled code to the correct source code?
I have one online published project but i don't have it's original source code so i used dotpeek decompiler to get source code but i didn't get right source code from that.Source code having some errors so how can i convert that decompiled source…

shah harshil
- 65
- 7
0
votes
1 answer
.NET decompiled assembly has an '&' after the type producing build error
I have inherited a few assemblies which as far as I know were produced using Visual Studio 2005, .NET Framework 1.1(?), and VB.NET. Unfortunately, the source code is no longer available to me. As a result, I have used dotPeek to decompile the…

David Laughlin
- 600
- 1
- 6
- 11
0
votes
2 answers
Dotpeek - Modify DLL Files - Use modified(recompiled) in project
I already did the process - Importing dll file in Dotpeek and Exporting Assembly to Project, Now I can modify dll file in VS 2015, but how to recompile the project and use recompiled dll file again in existing project.. I tried with building project…

Dharmesh
- 11
- 2
- 6
0
votes
1 answer
How to combine many CS files into a DLL file?
Basically what I'm trying to do is this:
1: Take an existing DLL file.
2: Edit some C# scripts inside. I'm doing this by using DotPeek to open in Visual Studio.
3: After editing the files, put them back into the original DLL file so the program…

Anton Nel
- 271
- 2
- 3
- 8
0
votes
1 answer
Reflection on CLR C++ code with dotPeek
I have this code written in CLR c++ :
namespace NS{
public class B {
public:
B()
{
int k = 1 + 1;
}
static int K;
int getId()
{
return 0;
}
static double getId2()
{
return 0;
}
};
}
I…

MaLiN2223
- 1,290
- 3
- 19
- 40
0
votes
1 answer
'using' block compiler generated code not visible in dotPeek or ILSpy
I am interested to look at the compiler generated code for the using code block which generates try-finally, but I do not see both dotPeek and ILSpy showing this detail. I used ildasm.exe to look at this code block and I see that it has the…

Kiran
- 56,921
- 15
- 176
- 161
0
votes
1 answer
Why is my code causing unmanaged memory to slowly increase causing gen0 collections?
When I run the following code in a unit test, I see that private bytes and working set slowly increase in Performance Monitor and unmanaged memory slowly rises in dotMemory. I've decompiled the source in dotPeek and can't seem to find anything out…

Meadock
- 109
- 1
- 1
- 7
0
votes
1 answer
Can't De-Compile Windows Phone 8.1 App Installed Assemblies
I have changed settings to install apps in the SD card in Windows phone 8.1. I then got the installed apps to the PC, and I browsed to the WPSystem\Apps\{C93F42CB-C64F-45EB-A628-A24891D82A4C}\Install folder.
There I found several .dll files. I tried…

Idrees Khan
- 7,702
- 18
- 63
- 111
-1
votes
1 answer
dotPeek decompile dll
So we had one old dll at our server, which was made by us, and source code was lost long ago, i tryed to debug .dll file (was made by one of our programmers) and the decompiled code was a bit protected so in some classes variables are like…

HyperX
- 1,121
- 2
- 22
- 42
-1
votes
1 answer
modify a dll using Visual Studios 2013 and dotPeek
I have a legacy dll file for which I do not have the original source code. I have used dotPeek 1.4.1 to open the dll and create a visual studios project. In this case, I am changing embedded e-mail addresses that have changed. My problem is that I…

pmcs
- 51
- 1
- 10