TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About IL code
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Ajay Yadav (3)
manish Mehta (3)
Mahesh Alle (1)
Jignesh Trivedi (1)
Chandra Hundigam (1)
Illawesome (1)
Srinivasa Sivkumar (1)
Related resources for IL code
No resource found
Just-In-Time (JIT) Compiler in C#
6/5/2024 5:37:18 AM.
The JIT compiler in C# converts MSIL code to native code for execution, ensuring type safety. Types of JIT compilation include Pre-JIT, Econo-JIT, and Normal-JIT. Pre-JIT compiles all code at deployme
Anti-Reverse Engineering (Assembly Obfuscation)
5/1/2024 11:02:29 AM.
Learn how to protect your .NET source code from reverse engineering using obfuscation techniques with Dotfuscator. Explore the process step-by-step, including obfuscated code analysis and MSIL code ex
Bug Fixing: .NET Reverse Engineering: Part 4
4/18/2024 1:15:09 PM.
Explore advanced .NET Reverse Engineering through Round-trip engineering, manipulating IL code without accessing source code. Fix bugs like Memory Overflow, Array Index Out Of Range, and Divide by Ze
Entity Framework 6.0: NGen.exe and Startup Performance
3/7/2024 8:48:20 AM.
This content discusses native code generation, focusing on the process where the Just In Time (JIT) compiler converts MSIL code into native code for execution. It explains how the Native Image Generat
.NET Assembly Internals: Part 1
1/1/2021 6:15:31 AM.
This tutorial drills down into the details of how the CLR resolves the location of externally referenced assemblies.
Understanding Destructors in VB.NET
11/10/2012 3:14:19 AM.
This article is about understanding the working concept of destructor in VB.NET.inShare. 642811
Protecting IL Code from Unauthorized Disassembling in VB.NET
11/10/2012 2:31:09 AM.
Microsoft .NET proved a mechanism where the code written in VB.NET, C# or any CLS compliant languages to generate MSIL (Microsoft Intermediate Language)code which targets the CLR and executes. This is an excellent mechanism to abstract the high level code from the underlying hardware.
Defining Custom Entry Points
5/20/2012 12:28:39 AM.
In this article i am going to demonstrate how we can manipulate the IL code to change the behaviour of how the .NET programme executes.
Protecting IL Code from unauthorised Disassembling
5/19/2012 7:41:28 AM.
Microsoft .NET proved a mechanism where the code written in VB.NET, C# or any CLS compliant languages to generate MSIL (Microsoft Intermediate Language)code which targets the CLR and executes. This is an excellent mechanism to abstract the high level code from the underlying hardware.
Using MSIL Code to Close Application Programmatically
12/28/2005 4:09:57 AM.
You can use MSIL code to call Win32 APIs and one of the simplest example of it is by closing an application programmatically.
C# or VB.NET - World War III
12/22/2005 7:52:54 AM.
In this article I'm going to go under the hood and show you what really happens to the in C# and VB.NET.