List<String> stores = new List<String>();
foreach (XmlNode storeXml in storesXml)
{
stores.Add(storeXml.InnerText);
can have string id of for e.g.
s1, s5, s3, s27
}
result.Sort();
Console.WriteLine(stores);
how do i sort the list so that the list is sorted like {s1, s3, s5, s27}