The keys and values of a hash map copied into two parallel arrays.
For each key-value pair copied from the hash map, the key is stored in Keys[i] while the value is stored in Values[i] (for the same i).
NativeKeyValueArrays is not actually itself a native collection: it contains a NativeArray for the keys and a NativeArray for the values,
but a NativeKeyValueArrays does not have its own safety handles.
| Property | Description |
|---|---|
| Keys | The keys. |
| Length | The number of key-value pairs. |
| Values | The values. |
| Constructor | Description |
|---|---|
| NativeKeyValueArrays_2 | Initializes and returns an instance of NativeKeyValueArrays. |
| Method | Description |
|---|---|
| Dispose | Releases all resources (memory and safety handles). |