Skip to content
This repository was archived by the owner on Feb 11, 2026. It is now read-only.

CSMD

Choose a tag to compare

@Lonami Lonami released this 08 Dec 13:26
· 5 commits to master since this release

CST files improved. Now you can type any code in a .cst file without the need of adding all
the usings, nor "namespace Foo", nor "public class Bar". You can just
type the code you wish to execute.

For example:
Before:

using System;

namespace Foo {
    public class Bar {
        static void Main(string[] args) {
            Console.WriteLine("Hello!");
            Console.ReadKey();
        }
    }
}

Now:

Console.WriteLine("Hello!");
Console.ReadKey();