C# cmd中修改显示(显示进度变化效果)的方法
程序员文章站
2023-12-13 21:31:22
复制代码 代码如下:public void printpercentage(int finishedcount, int totalcount) { ...
复制代码 代码如下:
public void printpercentage(int finishedcount, int totalcount)
{
decimal finishedpercentage = convert.todecimal(finishedcount) / convert.todecimal(totalcount);
console.setcursorposition(0, console.cursortop - 1);
console.writeline((finishedpercentage * 100).tostring("f1") + "%");
}
其中setcursorposition的目的就是重置光标到,里面参数的含义是(left, top),当前cmd最下面一行即为top.tostring("f1")是指保留一位小数.
或者用“\r”也能达到目的,表示将光标回到当前第一行,如下:
复制代码 代码如下:
public void printpercentage(int finishedcount, int totalcount)
{
decimal finishedpercentage = convert.todecimal(finishedcount) / convert.todecimal(totalcount);
console.writeline("\r" + (finishedpercentage * 100).tostring("f1") + "%");
}
相比之下前一种更加灵活一点,可以定位到任何位置