How about using the Guid
constructor which takes a byte array?
Guid guid = new Guid(binaryData);
(You can then use Guid.ToString()
to get it in text form if you need to.)
How about using the Guid
constructor which takes a byte array?
Guid guid = new Guid(binaryData);
(You can then use Guid.ToString()
to get it in text form if you need to.)