I have the following code and it sorts Capitalized words before words that are lower case. Is there a way to fix that?
list1.Sort(True)
So, if my list was the following:
apple
dog
Zebra
Cat
It sorts it like this:
Cat
Zebra
apple
dog
I want it to sort like this:
apple
Cat
dog
Zebra
list1.Sort(True)
So, if my list was the following:
apple
dog
Zebra
Cat
It sorts it like this:
Cat
Zebra
apple
dog
I want it to sort like this:
apple
Cat
dog
Zebra