I have a list of strings
Dim myList as new List(Of String)
1.7
1.8
1.9
1.10
1.10.1.1
1.10.1.2
1.10.1.3
1.7.1.1
1.7.1.2
1.7.1.3
1.7.1.4
and I want to order them
1.7
1.7.1.1
1.7.1.2
1.7.1.3
1.7.1.4
1.8
1.9
1.10
1.10.1.1
1.10.1.2
1.10.1.3
using
myList.Sort( comparer here? )
how do I write an simple comparer function?