Dargon.Nest.DevelopmentUtilities.CliProgressSpinner.CliProgressSpinner C# (CSharp) Method

CliProgressSpinner() public method

public CliProgressSpinner ( string taskName ) : System
taskName string
return System
        public CliProgressSpinner(string taskName)
        {
            this.taskName = taskName;

             if (Console.CursorLeft != 0) {
            Console.WriteLine();
             }
             this.x = Console.CursorLeft;
             this.y = Console.CursorTop;
             Console.WriteLine();
        }