Convert int bits to float bits

前端 未结 6 1274
醉话见心
醉话见心 2020-12-04 02:50

I\'m in the process of creating a buffer that will read/write in a banner in which I can completely eradicate the problems that comes with TCP-Segmentation. The only problem

6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-04 03:14

    using the System.Runtime.CompilerServices.Unsafe nuget package

    Unsafe.As(ref value);
    

    Will convert a float to an int

    and

    Unsafe.As(ref value);
    

    will convert an int to a float

提交回复
热议问题