Mono
Mono C# compiler version 2.6.7.0
using System;
namespace testn
{
public class TestClass
{
public static void Main()
{
for (int i = 0; i < 5; i++)
test ();
}
public static void test ()
{
long s = System.Environment.TickCount;
int count = 100000000;
for (int i=0; i < count; ++i)
{
int x = i/10;
}
long e = System.Environment.TickCount;
Console.WriteLine(e-s);
}
}
}
> mcs testc#.cs
> ./testc#.exe
510
511
510
511
510
Комментариев нет:
Отправить комментарий