iLyax

IBlox is My Blox

Ilyax:

NetImageBrowser:

NetFileBrowser:

Categories:

IBlox Note's:


Loading

BlogRoll:

GamerMenu on Facebook
RSS Feed

Linq - Xml Select

Posted on 2/24/2009 12:10:33 AM, in Programlama

Çok degil bir süre önce Xml fobim oldugunu kimseden saklamiyorum ama artik bunlarida atlattim sanirim artik Xml'de dost sayilir :=)

  1. public static Array GetCountryList()
  2. {
  3. XmlDocument doc = XDocument.Load(@"C:\Country.xml");
  4. var lstCountry = from s in doc.Elements("countries").Elements("country") select new {CountryName = s.Attribute("CountryName") };
  5. return lstCountry.toArray();
  6. }