C#计算程序执行时间

1.用C#取出域名

string url = "http://zhidao.baidu.com/question/57172275.html";
string domain = Regex.Match(url, @"(?<=://)[a-zA-Z\.0-9]+(?=\/)").Value.ToString();

2.用C#计算程序执行的时间

Stopwatch sw = new Stopwatch();
sw.Start();

//要执行的代码
 sw.Stop();
long timeTotal = sw.ElapsedMilliseconds;//毫秒


posted on 2010-12-24 17:00  Paste  阅读(163)  评论(0编辑  收藏  举报

导航