I am confuse. I try to use values returned from my calculation in OBU to OR.
I created a list in Public Class
List<double> listCan = new List<double>() {};
I added my variable candle in OBU :
listCan.Add(candle);
Than i use in OR a:
foreach(var item in listCan)
{
Print("CAN"+item);
}
How come the values in Print in OR are totally different from those Print in OBU. If i just Print(candle) the result is different from CAN in OR?
TY

Comment