.NET Types
Here is a list of the .NET types used in describing the Tacx file formats.
| Byte | 1 | Byte |
| Char | 2 | Character (size can be 1 byte if the encoding is set to ASCII) |
| Int16 | 2 | Signed 16 bit integer |
| UInt16 | 2 | Unsigned 16 bit integer |
| Int32 | 4 | Signed 32 bit integer |
| Single | 4 | Single precision IEEE floating point number |
| UInt32 | 4 | Unsigned 32 bit integer |
| Double | 8 | Double precision IEEE floating point number |
NB 1: The use of square brackets [] after a type indicates an array of that type. For example, Char[] is an array of char.
NB 2: Note that the size of the Char type depends on the encoding being used; in Fortius files this is always unicode, i.e. 2 bytes per character
|