Order Values returned from Find Children

Is there a way to order UiElements returned by the find children activity in order from greatest to least Using the attributes?

 For each item in children
   {   
  Price =  Item.Get("innertext")
    ' Now somehow put these children in order from greatest to least. 
   }

I would expect using linq
: children.orderby()

1 Like