Created
January 6, 2019 08:00
-
-
Save MartinZikmund/d550f1c64cdeb3df8b23166b1160b5d8 to your computer and use it in GitHub Desktop.
Correct approach for converting two little-endian bytes to ushort
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var result = (ushort)((data[position + 1] << 8) + data[position]); //note the additional parentheses |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment