How to Sort HtmlElementCollection
-
Hello, I have HtmlElementCollection object. Althought it is a collection, it does not have the Sort() method. How can I sort that collection using IComparer interface? Same goes for FileInfo[] object, it does not have Sort() method, and I need to sort that as well. Thank you.
-
Hello, I have HtmlElementCollection object. Althought it is a collection, it does not have the Sort() method. How can I sort that collection using IComparer interface? Same goes for FileInfo[] object, it does not have Sort() method, and I need to sort that as well. Thank you.
Don't have a solution for the collection problem, but to sort an array you can use an overload of the static
Array.Sort
method.
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook
-
Hello, I have HtmlElementCollection object. Althought it is a collection, it does not have the Sort() method. How can I sort that collection using IComparer interface? Same goes for FileInfo[] object, it does not have Sort() method, and I need to sort that as well. Thank you.