I have an XML document for which I want to sort specific nodes alphabetically.
XML document
Since all answers seem to work with Linq and I just wanted to use regular VB.NET I now added each node in an Arraylist and used the regular Array.Sort() on it. Does the trick.