How can i get source code from native dll ? With Reflector no luck.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You cannot.
Strictly speaking, you also cannot get the source code of a managed dll with Reflector (e.g. there are no comments; and if it’s been obfucated you also will not see the source code). The .NET Reflector is just very good at disassembling the MSIL code.
You can disassemble a native dll, you just won’t like it. For example, i am trying to debug a crash in code that isn’t mine:
But source code? No.