Is there a way to change the order of keys in a resx file? I'm only using strings if that makes a difference.
i tried, didn't work for some reason..
Andreas
2010-07-26 21:08:03
Ok, the the issue isn't the file, it's the in-memory representation. Hans was right.
Steven Sudit
2010-07-26 21:32:12
+2
A:
Not really, a .resx file behaves like a dictionary. Dictionaries are unordered collections, you find stuff back through the key value, the order is unimportant. Technically you can, with a text editor.
Hans Passant
2010-07-26 20:59:29