/// <summary> /// Returns a new Guid COMB, consisting of the provided Guid and provided timestamp. /// </summary> public Guid Create(Guid value, DateTime timestamp) => Comb.Create(value, timestamp);
/// <summary> /// Returns a new Guid COMB, consisting of the specified Guid combined with the current UTC timestamp. /// </summary> public Guid Create(Guid value) => Comb.Create(value);
/// <summary> /// Returns a new Guid COMB, consisting of a random Guid combined with the provided timestamp. /// </summary> public Guid Create(DateTime timestamp) => Comb.Create(timestamp);
/// <summary> /// Returns a new Guid COMB, consisting of a random Guid combined with the current UTC timestamp. /// </summary> public Guid Create() => Comb.Create();