Wednesday, 25 March 2015

C# Read xml Attributes


XMl file
<?xml version="1.0" encoding="utf-8" ?>
<Addresses>
<Address key="UK" City="London" Zip="9999"></Address>
<Address Key="US" City="Newyork" Zip="0000"></Address>
</Addresses>
C#
string strF = "AddressesData.xml";
if (File.Exists(strF))
{
XElement root = XElement.Load(strF);
IEnumerable<XElement> address =
from el in root.Elements("Address")
where (string)el.Attribute("key") == "UK"
select el;
foreach (XElement el in address)
{
string city = el.Attribute("City").Value;
string zip = el.Attribute("Zip").Value;
}
}
else
{ Console.WriteLine("No file"); }
view raw gistfile1.cs hosted with ❤ by GitHub