mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 05:48:37 +00:00
19 lines
325 B
C#
19 lines
325 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace $nameSpace$
|
|
{
|
|
public class $className$
|
|
{
|
|
public static void Init()
|
|
{
|
|
Main();
|
|
}
|
|
static void Main()
|
|
{
|
|
Console.WriteLine("Hello VSX!!!");
|
|
Console.ReadKey();
|
|
}
|
|
}
|
|
}
|