.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.
 
 
 
 

28 lines
605 B

using System;
using System.Reflection;
using ClassLibrary1;
[assembly: AssemblyCompany("ConsoleApp8")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("ConsoleApp8")]
[assembly: AssemblyTitle("ConsoleApp8")]
namespace ConsoleApp8
{
internal class Program : Class1
{
public Program(string _)
: base(_)
{
Console.WriteLine("Class1(string)<-Program(string)");
}
private static void Main(string[] args)
{
new Program("");
Console.WriteLine("Hello World!");
}
}
}