Dargon.Nest.DevelopmentUtilities.CliProgressSpinner.CliProgressSpinner C# (CSharp) 메소드

CliProgressSpinner() 공개 메소드

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

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