Report post

Are you sure you want to report the post shown below? This will send an email to the ATVO administrators. Please include a short reason for reporting.

Users reporting for no reason may be locked out.


Post

Posted by Nick Thissen
on
Ah, yes, you need Order not Id.

Byte is just a smaller version of an integer and only accepts values 0-255. Just change byte to int in the declaration of the _fastlaps dictionary:

Dictionary<byte, ILap>
change to
Dictionary<int, ILap>