static void ReverseGuidEndianness()

in src/shared/GuidExtensions.cs [27:38]


        static void ReverseGuidEndianness(ref byte[] bytes)
        {
            // dword
            Swap(ref bytes[0], ref bytes[3]);
            Swap(ref bytes[1], ref bytes[2]);

            // word
            Swap(ref bytes[4], ref bytes[5]);

            // word
            Swap(ref bytes[6], ref bytes[7]);
        }