0

There is a case. I have 4 compiled classes included in my ASP.net, (c#) project which as BO.dll (an application extension file) and BO (program debug database file) say for example of 1 class. I have no source for these classes. How can I amend source of this class or can see the complete class.? Any idea?? example:

using Ctrl;

its calling like.

List<CompanyLPO> list = qCtrl.GetCompanyLPOApprovals();

when I press F12 on GetCompanyLPOApprovals it taken me into the bellow.

public List<CompanyLPO> GetCompanyLPOApprovals();

now I want to see GetCompanyLPOApprovals() source. How can I??

Regards,

Raja

Raja
  • 131
  • 2
  • 16
  • Please put all DLL in in one folder. if "GetCompanyLPOApprovals" implementation is exists in any of the DLL then it will automatically redirect to those DLL. – Jayesh Goyani Jan 22 '14 at 05:33

7 Answers7

1

You can see DLL code using Telerik JustDecompile or DotPeek.

Jayesh Goyani
  • 11,008
  • 11
  • 30
  • 50
1

Use a tool like Telerik JustDecompile.

J0e3gan
  • 8,740
  • 10
  • 53
  • 80
1

I think you have downloaded the .NET Reflector & this FileGenerator plugin , If you do,

  1. Open up the Reflector.exe
  2. Go to View and click Add-Ins,
  3. In the Add-Ins window click Add...,
  4. Then find the dll you have downloaded FileGenerator.dll (witch came wth the FileGenerator plugin)
  5. Then close the Add-Ins window.
  6. Go to File and click Open and choose the dll that you want to decompile,
  7. After you have opend it, it will appear in the tree view,
  8. Go to Tools and click Generate Files (Crtl+Shift+G),
  9. select the output directory and select appropriate settings as your wish,
  10. Click generate files.

Reply if success

Ravi
  • 853
  • 8
  • 17
1

you're talking about decompiling. .NET Reflector is the way for viewing your source code this way. but notice that, it will not perfectly be the original code, but the estimation of what it was like.

There's also another tool, named dotPeek. HERE

Zeeshan
  • 2,884
  • 3
  • 28
  • 47
1

You can use .NET Reflector or ReSharper. Both of them are great and not just for decompiling an assembly.

Selman Genç
  • 100,147
  • 13
  • 119
  • 184
0

Debug and decompile inside Visual Studio reflector

Sajad Karuthedath
  • 14,987
  • 4
  • 32
  • 49
0

I have used this online tool [http://www.showmycode.com/1 easily I am able to find the code

Md. Parvez Alam
  • 4,326
  • 5
  • 48
  • 108