Type:Float

From Resonite Wiki
Revision as of 08:53, 30 July 2024 by AmasterAmaster (talk | contribs) (Added link.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

A float is a value type that that can store a floating-point decimal number in the approximate range ±1.5 x 10^−45 to ±3.4 x 10^38

In the underlying runtime (.net), this takes up 4 bytes of memory. For more information, refer to the Microsoft documentation on floating-point numeric types

Usage

Use this type whenever you need to store decimal numbers, but don't need high precision. Generally, you should try using one of the float variants first, before moving on to double, which uses twice the memory.

Related Types