How can I stop my code being reverse-engineered from IL
Answer / kirti
There is currently no simple way to stop code being reverse-engineered from IL. In future it is likely that IL obfuscation tools will become available, either from MS or from third parties. These tools work by 'optimising' the IL in such a way that reverse-engineering becomes much more difficult.
Of course if you are writing web services then reverse-engineering is not a problem as clients do not have access to your IL.
| Is This Answer Correct ? | 0 Yes | 0 No |
what do you mean by table-per-hierarchy?
what is Assemble
Difference between ASP.NET MVC and ASP.NET WebForms?
What are the main components of .net framework?
What is net framework 3.0 ?
What are the different authentication modes in the .NET environment?
Tell me about the internal working of Garbage collector?
Is .net framework 4.8 the last version?
Where is tempdata stored?
Can you please explain the request flow in ASP.NET MVC framework?
what is way of loading data in ef (entity framework)?
Requirement is: try { \\SQL Query } catch(Exception i) { print a } catch(SQLQueryException e) { \\SQL Query } Qu)I Got Exception in "try" block. Which "catch" statement (i.e. 1st catch or 2nd catch ) catches the exception and Why???