Class GuidUtil
Utility for dealing with Guid objects.
Inherited Members
Namespace: Unity.XR.CoreUtils
Assembly: Unity.XR.CoreUtils.dll
Syntax
public static class GuidUtil
Methods
Compose(ulong, ulong)
Declaration
public static Guid Compose(ulong low, ulong high)
Parameters
Type | Name | Description |
---|---|---|
ulong | low | The low 8 bytes of the |
ulong | high | The high 8 bytes of the |
Returns
Type | Description |
---|---|
Guid | The |
Remarks
Use Decompose(Guid, out ulong, out ulong) to separate the Guid
into its low and high components.