Hi, im codding an RTM tool in c# and i have an offset with a float value how can i do?
Example of a code with bytes (the value is an integer):
ulong fov = 0x009595D5;
byte[] customFov = { 0x3F, 0x00}; //Here the value is 3F00
how to do it with a float? like this 0.01666667
i need to convert to hex and then put it?
Example of a code with bytes (the value is an integer):
ulong fov = 0x009595D5;
byte[] customFov = { 0x3F, 0x00}; //Here the value is 3F00
how to do it with a float? like this 0.01666667
i need to convert to hex and then put it?