SilverShaded
Well-known member
- Joined
- Mar 7, 2020
- Messages
- 110
- Programming Experience
- 10+
Guys, im trying to convert some python code to C#
In python there is this command and the result is 'x10E'
self.v5_controlcode = struct.pack("<H", 0x4510)
<H implies unsigned integer,
I cant for the life of me get 0x4510 to convert to x10E?
For many other values I can reproduce the results but not for this one
anyone know how to do the conversion?
In python there is this command and the result is 'x10E'
self.v5_controlcode = struct.pack("<H", 0x4510)
<H implies unsigned integer,
I cant for the life of me get 0x4510 to convert to x10E?
For many other values I can reproduce the results but not for this one