Error CS0103 The name '_nodeId' does not exist in the current context
line: var d = 0x8000 | ((_last & 0xf) << 10) | (_seq << 2) | (_nodeId >> 6);
Should _nodeId be _seq or _nid?
Not related, but: Consider in using direct DateTime.UnixEpoch and Random.Shared.
For a cypto safer random the RandomNumberGenerator can be used
line:
var d = 0x8000 | ((_last & 0xf) << 10) | (_seq << 2) | (_nodeId >> 6);Should
_nodeIdbe_seqor_nid?Not related, but: Consider in using direct
DateTime.UnixEpochandRandom.Shared.For a cypto safer random the
RandomNumberGeneratorcan be used