本文整理汇总了C#中System.Diagnostics.Stopwatch.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# System.Diagnostics.Stopwatch.ToString方法的具体用法?C# System.Diagnostics.Stopwatch.ToString怎么用?C# System.Diagnostics.Stopwatch.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Diagnostics.Stopwatch
的用法示例。
在下文中一共展示了System.Diagnostics.Stopwatch.ToString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: button1_Click
private void button1_Click(object sender, EventArgs e)
{
Form1.SinCalculator Test = new Form1.SinCalculator(2000);
System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
sw.Start();
for (int u = 0; u < 500; u++)
{
label1.Text = sw.ToString();
Random rand = new Random();
int[] mas1 = new int[1000];
double[] mas2 = new double[1000];
for (int i = 0; i < 1000; i++)
{
mas1[i] = rand.Next();
mas2[i] = rand.NextDouble();
}
for (int i = mas1.Length - 1; i > 0; i--)
for (int j = 0; j < i; j++)
if (mas1[j] > mas1[j + 1])
{
double t = mas2[i];
mas2[i] = mas2[mas2.Length - i];
mas2[mas2.Length - i] = t;
int tmp = mas1[j];
mas1[j] = mas1[j + 1];
mas1[j + 1] = tmp;
}
///////////////
for (int i = 0; i < 200; i++)
Test.Sin(20).ToString();
}
sw.Stop();
TimeSpan ts;
ts = sw.Elapsed;
label1.Text = "Ваш компьютер справился с этим за " + ts.Seconds.ToString() +"." + ts.Milliseconds.ToString() + " секунд. Нелохо.";
label2.Text = "Более точный результат: " + ts.ToString();
}