cil
Here are 54 public repositories matching this topic...
-
Updated
Nov 5, 2020 - C#
-
Updated
Oct 25, 2020 - C#
-
Updated
Dec 3, 2018 - C#
Below a list of all opcodes currently supported by the CIL emulator of Echo's AsmResolver back-end.
Miscellaneous:
- Nop,
- Break,
- Dup,
- Pop,
- Ckfinite,
- Mkrefany,
- Refanyval,
- Refanytype,
- Arglist,
Variables and arguments:
- Ldarg_0,
- Ldarg_1,
-
Updated
Sep 17, 2020 - F#
-
Updated
Sep 16, 2020 - C#
-
Updated
Apr 26, 2018 - C#
-
Updated
Jan 2, 2019 - Lua
-
Updated
Feb 7, 2020 - C#
-
Updated
Oct 1, 2020 - C#
-
Updated
Aug 30, 2020 - C#
When outputting signature of entry point method as CIL assembler code, it should be marked with .entrypoint directive.
Example code:
using System;
using System.Reflection;
using CilBytecodeParser;
class Program
{
public static void Main(string[] args)
{
Console.WriteLine(CilAnalysis.MethodToText(MethodBase.GetCurrentMethod()));
Console.ReadKey();
-
Updated
Jun 8, 2020 - F#
-
Updated
Nov 1, 2020 - C#
-
Updated
Nov 5, 2020 - C#
Add more tests
Improve this page
Add a description, image, and links to the cil topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the cil topic, visit your repo's landing page and select "manage topics."
Are there any plans to implement the reflection system in the project, if so, do you have any idea how it will work to generate methods and classes at runtime, and execute this code?
For exemple, if we have this code: