I have converted Byte[16] to Guid using new Guid(byte[16]) constructor. Now I would like to convert back my guid to byte[16] to compare them, is it possible to do it ?
I have converted Byte[16] to Guid using new Guid(byte[16]) constructor. Now I would like
Share
You could just use
Guid.ToByteArray.