Class GuidExtensions
Extensions to System.Guid
Namespace: UnityEditor.XR.ARSubsystems
Syntax
public static class GuidExtensions
Methods
Decompose(Guid, out UInt64, out UInt64)
Decomposes a 16-byte Guid into two 8-byte ulongs.
Recompose using UnityEngine.XR.ARSubsystems.GuidUtil.Compopse.
Declaration
public static void Decompose(this Guid guid, out ulong low, out ulong high)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | guid | The |
| UInt64 | low | The lower 8 bytes of the guid. |
| UInt64 | high | The upper 8 bytes of the guid. |