I am writing an app for my company and am currently working on the search functionality. When a user searches for an item, I want to display the highest version (which is st
It sounds like you have a text value instead of a numeric value.
If you need to sort, you can try:
var items = (from r in results select r); return items.OrderBy( v=> Int.Parse(v.Version) );