mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
20 lines
453 B
C#
20 lines
453 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Indy.IL2CPU;
|
|
|
|
namespace IL2CPU {
|
|
public class Program {
|
|
public static void Main(string[] args) {
|
|
try
|
|
{
|
|
Engine e = new Engine();
|
|
e.Execute("HelloWorld.exe", typeof(Indy.IL2CPU.IL.X86.Noop).Assembly.GetName().ToString());
|
|
} catch (Exception E) {
|
|
Console.WriteLine(E.ToString());
|
|
}
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|