Skip to content
/ TinyMenu Public

A tiny console menu builder for C#, supports .Net Framework and Standard.

Notifications You must be signed in to change notification settings

dutts/TinyMenu

Repository files navigation

TinyMenu

Build Status

A tiny console menu builder for C#, supports .Net Framework and Standard.

Stats

Usage

Tiny.Menu("Main")
    ._("Foo", () => { Console.WriteLine("Foo"); Thread.Sleep(1000); })
    ._("Bar", () => { Console.WriteLine("Bar"); Thread.Sleep(1000); })
    ._(
       Tiny.Menu("Sub")
           ._("SubItem", () => { Console.WriteLine("SubItem"); Thread.Sleep(1000); })
       )
    .Show();

https://www.nuget.org/packages/TinyMenu/

nuget

About

A tiny console menu builder for C#, supports .Net Framework and Standard.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages