Example #1
0
        /// <summary>
        /// Demonstrates how the spinner stays on the current line
        /// </summary>
        static void Inline()
        {
            Console.Write("Spinning on the current line... ");

            using (var spinner = new Spinnerino.Spinner(newlineWhenDone: false))
            {
                SpinIt(spinner, 20);
            }

            Console.WriteLine("Done!");
        }
Example #2
0
        /// <summary>
        /// Demonstrates how the spinner can spin on its own line
        /// </summary>
        static void SeparateLines()
        {
            Console.WriteLine("Spinning on its own line...");

            using (var spinner = new Spinnerino.Spinner())
            {
                SpinIt(spinner, 20);
            }

            Console.WriteLine("Done!");
        }
Example #3
0
        /// <summary>
        /// Demonstrates how the spinner can loop through a custom sequence of chatacters
        /// </summary>
        static void CustomCharacters()
        {
            Console.Write("Spinning custom chars... ");

            const string animationCharacters = "~^ยด`^+=-";

            using (var spinner = new Spinnerino.Spinner(newlineWhenDone: false, animationCharacters: animationCharacters))
            {
                SpinIt(spinner, 50);
            }

            Console.WriteLine("Done!");
        }