populate array from an XML file

Code Example - populate array from an XML file

                
                        string[] MyArray = XDocument.Parse(xml).XPathSelectElements("//a").Select(e => e.Attributes("href").FirstOrDefault().Value).ToArray()`