I have an array of structures and I need to sort by one property of that structure. Is there any easy way to do this? I know that I can loop through the structure and shuffle them one at a time, but that would take forver.
I have a fully functional app using this stuff, but now I need to sort the items based on Name, FieldA, FieldB, etc.PHP Code:Private Shared m_Bookmarks() As Bookmark
Public Structure Bookmark
Public Name As String
Public FieldA As String
Public FieldB As String
Public FieldC As String
End Structure
Any ideas?
thanks,




Reply With Quote