.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

32 lines
695 B

// <file>
// <copyright name="David Srbecký" email="dsrbecky@gmail.com"/>
// <license name="GPL"/>
// </file>
using System;
using System.Windows.Forms;
namespace Decompiler
{
/// <summary>
/// Class with program entry point.
/// </summary>
internal sealed class Program
{
/// <summary>
/// Program entry point.
/// </summary>
[STAThread]
private static void Main(string[] args)
{
string sourceCode = "<Source code>";
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
MainForm mainForm = new MainForm();
mainForm.SourceCode = sourceCode;
Application.Run(mainForm);
}
}
}