public virtual float ReadFloat() => ByteBufferUtil.Int32BitsToSingle(this.ReadInt());
 public virtual float GetFloat(int index) => ByteBufferUtil.Int32BitsToSingle(this.GetInt(index));
 public float ReadFloatLE() => ByteBufferUtil.Int32BitsToSingle(this.ReadIntLE());
 public float GetFloatLE(int index) => ByteBufferUtil.Int32BitsToSingle(this.GetIntLE(index));
Exemplo n.º 5
0
 public static float ReadFloatLE(this IByteBuffer buf) => ByteBufferUtil.Int32BitsToSingle(buf.ReadIntLE());
Exemplo n.º 6
0
 public static float GetFloatLE(this IByteBuffer buf, int index) => ByteBufferUtil.Int32BitsToSingle(buf.GetIntLE(index));