Class GuidUtil
Utility for dealing with Guid
s.
Inherited Members
Namespace: UnityEngine.XR.ARSubsystems
Assembly: Unity.XR.ARSubsystems.dll
Syntax
public static class GuidUtil
Methods
Compose(ulong, ulong)
Reconstructs a Guid from two ulong
s representing the low and high bytes.
Use GuidUtil.Decompose
to decompose the guid into its low and high components.
Declaration
public static Guid Compose(ulong low, ulong high)
Parameters
Type | Name | Description |
---|---|---|
ulong | low | The low 8 bytes of the guid |
ulong | high | The high 8 bytes of the guid. |
Returns
Type | Description |
---|---|
Guid | The Guid composed of |