We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14107f5 commit a7fb864Copy full SHA for a7fb864
src/Smdn.Fundamental.Uuid/Smdn/Uuid.cs
@@ -200,6 +200,26 @@ byte[] node
200
{
201
}
202
203
+ [CLSCompliant(false)]
204
+ public Uuid(
205
+ uint time_low,
206
+ ushort time_mid,
207
+ ushort time_hi_and_version,
208
+ byte clock_seq_hi_and_reserved,
209
+ byte clock_seq_low,
210
+ ReadOnlySpan<byte> node
211
+ )
212
+ : this(
213
+ time_low,
214
+ time_mid,
215
+ time_hi_and_version,
216
+ clock_seq_hi_and_reserved,
217
+ clock_seq_low,
218
+ new Node(node)
219
220
+ {
221
+ }
222
+
223
[CLSCompliant(false)]
224
public Uuid(
225
uint time_low,
0 commit comments