第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

估計完成 C# 程序所需的時間

估計完成 C# 程序所需的時間

C#
心有法竹 2023-07-22 16:35:02
我正在使用秒表,我想估計從開始到結(jié)束需要多長時間。它看起來像一個非常簡單的復(fù)合體。我實(shí)例化了秒表,啟動它,然后停止它,然后通過編寫一個方法 .elapsed 它應(yīng)該為我提供從開始到停止所需的時間。不幸的是,它總是為我提供 00:00:00。我是否必須在我的電腦上設(shè)置一些適合我的文化的內(nèi)容?我也嘗試過 .StartNew() 但無濟(jì)于事。   Stopwatch stopwatch = new Stopwatch();        stopwatch.Start();        string juniorDevOpsFolder = "JuniorDevOps";        string targetPath = Directory.GetCurrentDirectory();        int endIndex = targetPath.IndexOf(juniorDevOpsFolder);        var juniorDevOpsPath = targetPath.Substring(0, endIndex + juniorDevOpsFolder.Length);        string directory = "Files";        string targetDirectory = Path.Combine(juniorDevOpsPath, directory);        ProcessDirectory(targetDirectory);        stopwatch.Stop();        // Write hours, minutes and seconds.        Console.WriteLine("Time elapsed: {0:hh\\:mm\\:ss}", stopwatch.Elapsed);同樣,輸出為 00:00:00
查看完整描述

4 回答

?
SMILET

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超4個贊

您的程序執(zhí)行時間不到一秒,因此格式化stopwatch.Elapsed為將 00:00:00 打印到控制臺。嘗試stopwatch.ElapsedMilliseconds而不是格式化stopwatch.Elapsed。


就像是


    Stopwatch stopwatch = new Stopwatch();

    stopwatch.Start();


    //Your business logic


    stopwatch.Stop();

    Console.WriteLine($"Elapsed milliseconds : {stopwatch.ElapsedMilliseconds}" );


查看完整回答
反對 回復(fù) 2023-07-22
?
眼眸繁星

TA貢獻(xiàn)1873條經(jīng)驗(yàn) 獲得超9個贊

那段代碼呢:

var watch = new System.Diagnostics.Stopwatch();

        watch.Start();
                // do something what do you want

        watch.Stop();

        Console.WriteLine($"Execution Time: {watch.ElapsedMilliseconds} ms");


查看完整回答
反對 回復(fù) 2023-07-22
?
慕斯王

TA貢獻(xiàn)1864條經(jīng)驗(yàn) 獲得超2個贊

可能需要不到一秒鐘的時間。嘗試格式化毫秒。



查看完整回答
反對 回復(fù) 2023-07-22
?
子衿沉夜

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超3個贊

也許只是因?yàn)槟愕某绦驁?zhí)行時間不到一秒,這就是為什么你得到零小時、零分鐘和零秒?嘗試未格式化的輸出或ElapsesMilliseconds屬性



查看完整回答
反對 回復(fù) 2023-07-22
  • 4 回答
  • 0 關(guān)注
  • 215 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號