static void Swap()

in src/shared/GuidExtensions.cs [40:45]


        static void Swap(ref byte b1, ref byte b2)
        {
            byte temp = b1;
            b1 = b2;
            b2 = temp;
        }