I have this List:
List
IList ListaServizi = new List();
How can I order it alphabetically
You can use Sort
List ListaServizi = new List() { }; ListaServizi.Sort();