2

I have xgeno.mvc.utilities dll in my project references. I want to edit one of the method of this dll.

Can I do this?

AmrutaG
  • 43
  • 8
  • You have to decompile the DLL and change your stuff inside that code. But take care: if it is not your code, for non-research purposes this is forbidden in a lot of countries. – Benjamin Abt Feb 23 '16 at 08:33

2 Answers2

3

You have to use a decompiler for this which has many variants on the web (there's google) and then make the modifications on the decomplied files and then compile it again and then point that newly compiled dll to your project

Jon P
  • 826
  • 1
  • 7
  • 20
1

You need something like .NET Reflector, but since it is not free, you will probably want to look for free alternatives. See Here some discussion wich can help in the search.

Community
  • 1
  • 1
DDan
  • 8,068
  • 5
  • 33
  • 52