Namespace: Rx – Header: Rx.Core/RxString.h
ENumberPresentation Enumeration
C++
#include "Rx.Core/RxString.h"
enum class ENumberPresentation
Specifies different number presentations when converting a number to a string.
Values
Binary |
Number in binary format. Not yet implemented. |
Octal |
Number in octal format. The number 42 is printed as 52. |
Decimal |
Number in decimal format. The number 42 is printed as 42. |
Hex |
Number in hexadecimal format. The number 42 is printed as 2a. |