Hello Genius :
can you help me how to sort string in List(of String)
my code is
Result is like :=
but i want to result like this :=
how to sort like this please help me l'm struggled
Thanks
can you help me how to sort string in List(of String)
my code is
PHP Code:
Dim _lst As List(Of String) = New List(Of String)({"ob1", "ob5", "ob2", "ob3", "ob33", "ob10", "ob1", "ob11", "ob123", "ob20"})
_lst.Sort()
ListBox1.Items.AddRange(_lst.ToArray)
PHP Code:
ob1
ob1
ob10
ob11
ob123
ob2
ob20
ob3
ob33
ob5
PHP Code:
ob1,ob1,ob2,ob3,..........
Thanks