为什么这需要6秒钟?

时间:2014-05-02 20:37:12

标签: debugging profile trace

我有以下代码:

       App.TraceTimer(true);

        History.BindSource.EndEdit();
        History.Rows[0]["description_text"] = this.rtfText.Text;
    History.Rows[0]["timestamp"] = DateTime.Now;
    History.Rows[0]["edited_by"] = App.UserName;
        History.Rows[0]["if_completes_task"] = this.chkHistoryif_completes_task.Checked;

        allcompletedwith = History.Rows[0]["completed_with"].ToString();
        History.Rows[0]["completed_with"] = cOriginalName.Trim();

        long TimeLapse = App.TraceTimer(false);

从示踪剂开始到游戏中时光倒流,需要6秒钟。可能会发生什么导致这需要这么长时间?当我逐行跟踪它时,所有更新History.Rows [0]的行似乎需要大约相同的时间。

感谢大家的任何建议。

鲍勃

0 个答案:

没有答案