I\'ve got a array of many strings. How can I sort the strings by alphabet?
Sounds like you just want to use the Array.Sort method.
Array.Sort(myArray)
There are many overloads, some which take custom comparers (classes or delegates), but the default one should do the sorting alphabetically (ascending) as you seem to want.