Poniższy kod podaje inne dane wyjściowe podczas uruchamiania wydania w programie Visual Studio i uruchamiania wydania poza programem Visual Studio. Używam Visual Studio 2008 i celuję w .NET 3.5. Próbowałem także .NET 3.5 SP1.
Podczas uruchamiania poza Visual Studio, JIT powinien się uruchomić. Albo (a) dzieje się coś subtelnego z C #, którego mi brakuje lub (b) JIT jest w błędzie. Wątpię, czy JIT może się nie udać, ale brakuje mi innych możliwości ...
Dane wyjściowe podczas uruchamiania w programie Visual Studio:
0 0,
0 1,
1 0,
1 1,
Dane wyjściowe podczas uruchamiania wersji poza Visual Studio:
0 2,
0 2,
1 2,
1 2,
Jaki jest powód?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Test
{
struct IntVec
{
public int x;
public int y;
}
interface IDoSomething
{
void Do(IntVec o);
}
class DoSomething : IDoSomething
{
public void Do(IntVec o)
{
Console.WriteLine(o.x.ToString() + " " + o.y.ToString()+",");
}
}
class Program
{
static void Test(IDoSomething oDoesSomething)
{
IntVec oVec = new IntVec();
for (oVec.x = 0; oVec.x < 2; oVec.x++)
{
for (oVec.y = 0; oVec.y < 2; oVec.y++)
{
oDoesSomething.Do(oVec);
}
}
}
static void Main(string[] args)
{
Test(new DoSomething());
Console.ReadLine();
}
}
}