Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 651 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 651 Bytes

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