コード例 #1
0
 public static Uuid64 Read(byte[] value)
 {
     Contract.NotNull(value, nameof(value));
     if (value.Length == 0)
     {
         return(default);
コード例 #2
0
 /// <summary>Try parsing a string representation of an UUid64</summary>
 public static bool TryParse([NotNull] string buffer, out Uuid64 result)
 {
     Contract.NotNull(buffer, nameof(buffer));
     return(TryParse(buffer.AsSpan(), out result));
 }