I am trying to order the methods in a web service alphabetically. Supposedly all you have to do is change line 1285 in C:/Windows/Microsoft .NET/.../DefaultWsdlHelpGenerator.aspx from a Hashtable to a Sorted List as follows:
This seems to have no effect on the order of the methods. Any ideas about what I'm doing wrong?
Thanks
Code:
//Hashtable methodsTable = new Hashtable();
SortedList methodsTable = new SortedList();
Thanks