You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The server part is running on a machine with en-US locale, the client on a machine with sv-SE locale. On the client machine, with the sv-SE locale, members of type X whose names begin with 'V' and 'W' are sorted in the order W, V. On the en-US server machine, the order of those same members is of course in the order V, W. I'm streaming instances of type X from server to client by enumerating the members, and was wrongfully assuming that the order of the members for the exact same Type would be equal on both machines.
Is there a reason these members are sorted instead of just keeping them in the order in which they occur in the type? And if there is, may I propose to do a:
Found a problem in my (client/server) application today, which was caused by the members collection in the Memberset being sorted by name:
The server part is running on a machine with en-US locale, the client on a machine with sv-SE locale. On the client machine, with the sv-SE locale, members of type X whose names begin with 'V' and 'W' are sorted in the order W, V. On the en-US server machine, the order of those same members is of course in the order V, W. I'm streaming instances of type X from server to client by enumerating the members, and was wrongfully assuming that the order of the members for the exact same Type would be equal on both machines.
Is there a reason these members are sorted instead of just keeping them in the order in which they occur in the type? And if there is, may I propose to do a:
to make the order locale insensitive?
The text was updated successfully, but these errors were encountered: