コード例 #1
0
ファイル: ByteBuffer.cs プロジェクト: linzhiqiang/Aix.Sockets
 public float ReadFloatLE() => ByteBufferUtils.Int32BitsToSingle(this.ReadIntLE());
コード例 #2
0
ファイル: ByteBuffer.cs プロジェクト: linzhiqiang/Aix.Sockets
 public float GetFloatLE(int index) => ByteBufferUtils.Int32BitsToSingle(this.GetIntLE(index));