How to read a .NET Guid into a Java UUID

Could you not just store the .Net Guid as a string and read it into Java? That way you don’t need to worry about byte order or anything.

If not then This explains how the bytes are laid out in C#

http://msdn.microsoft.com/en-us/library/fx22893a.aspx

Leave a Comment