ln.application/ln.application.demo/Program.cs

22 lines
451 B
C#

// /**
// * File: Program.cs
// * Author: haraldwolff
// *
// * This file and it's content is copyrighted by the Author and / or copyright holder.
// * Any use wihtout proper permission is illegal and may lead to legal actions.
// *
// *
// **/
using System;
namespace ln.application.demo
{
class MainClass
{
public static void Main(string[] args)
{
new ApplicationDemo().Start(args);
}
}
}