Namespace: Rx – Header: Rx.Core/EValueType.h
EValueType Enumeration
C++
#include "Rx.Core/EValueType.h"
enum class EValueType
Specifies the data type of certain values. This is often used for storing arbitrary values in binary format.
Values
None |
Undefined. |
UInt |
Unsigned integer data type. Is 'unsigned' in C++ and uint in C#. |
Double |
Double precision floating point data type. Is 'double' in C++ and C#. |
String |
String data type. Is 'Rx::CRxString' in C++ and 'string' in C#. |
ArrayUInt |
Array of unsigned integers. Is 'Rx::CRxArrayUInt' in C++ and 'uint[]' in C#. |
ArrayDouble |
Array of double precision floating points. Is 'Rx::CRxArrayDouble' in C++ and 'double[]' in C#. |
ArrayString |
Array of strings. Is 'Rx::CRxArrayString' in C++ and 'string[]' in C#. |