Skip to content

Instantly share code, notes, and snippets.

@DevJohnC
Created April 13, 2018 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DevJohnC/dde2557e8e89cb8661ccb7a8b7465909 to your computer and use it in GitHub Desktop.
Save DevJohnC/dde2557e8e89cb8661ccb7a8b7465909 to your computer and use it in GitHub Desktop.
public static UInt16 ToUInt16(byte[] value, int startIndex)
{
return (ushort)(
value[startIndex + 1] +
(value[startIndex] * 256)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment