public static void WriteSingle(float value, MsgPackStream stream) { stream.WriteUInt8(FormatCode.Float32); stream.WriteSingle(value); }