I am reading in so unix timestamps like 1199366464 and then converting to a double
boo code
timeStamp = double.Parse(values[0])
Debug.Log("${timeStamp}${values[0]}")
on my mac in IDE or standalone it is fine
1199366464 1199366464
on windows standalone I lose the last two digits
1199366400 1199366464
does any one know if this just a limitation of the mono platform on windows or a possible bug?