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