當我返回字符串timeTaken,它是空的,它表示,這對IDE到,儘管它在主要方法被定義(時間跨度timeTaken = timer.Elapsed)問題的分配變量C#
class Program
{
public static string timeTaken;
static void Main(string[] args)
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(firstline);
Stopwatch timer = new Stopwatch();
timer.Start();
using (var response = request.GetResponse());
timer.Stop();
TimeSpan timeTaken = timer.Elapsed;
...
}
}
如何輸出timeTaken?
變量不是字符串.. – James
「當我返回字符串...」代碼不返回任何字符串。 – 2011-08-26 08:33:34