[Mono-bugs] [Bug 650523] Bug on Guid.ToString - not simetric with constructor

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Mon Nov 1 23:49:53 EDT 2010


https://bugzilla.novell.com/show_bug.cgi?id=650523

https://bugzilla.novell.com/show_bug.cgi?id=650523#c2


--- Comment #2 from Gonzalo Paniagua Javier <gonzalo at novell.com> 2010-11-02 03:49:53 UTC ---
Works fine on linux x86.
The method causing the problem is:
--------------------
static void AppendShort (StringBuilder builder, short value) {
    builder.Append (ToHex ((value >> 12) & 0xf));
    builder.Append (ToHex ((value >> 8) & 0xf));
    builder.Append (ToHex ((value >> 4) & 0xf));
    builder.Append (ToHex (value & 0xf));
}
--------------------

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


More information about the mono-bugs mailing list