the loop i and j always remains blocked at 0 while the loop k increments very well.

// exemple code

public override void OnData(Slice data)
{

for(int i=0;i<=5;i++)
{
for(int j=0;j<=5;j++)
{
for(int k=0;k<=5;k++)
{
Console.WriteLine(i); // check if i run well
Console.WriteLine(j); // check if j run well
Console.WriteLine(k); // check if k run well
}
}
}

}