Ejemplo n.º 1
0
 /// <summary>
 ///     Convert two longs to Guid
 ///     <para>
 ///         Note that two longs cannot hold GUID larger than ffffffff-ffff-7fff-ffff-ffffffffff7f, but that shouldn't be
 ///         issue in most realistic use cases
 ///     </para>
 /// </summary>
 public static Guid FromLongs(long first, long second) =>
 GuidConverter.GuidFromInt64(first, second);