In C I will do this to convert the float representation of a number to a DWORD. Take the value from the address and pass the content to DWORD.
dwordVal = *(DWORD*)&floatVal;
So for example 44.54321 will become 0x42322C3F .
How can I do the same in C# ?
floating-point c # int
Pablo
source share