Click here to Skip to main content
15,893,266 members
Articles / Programming Languages / XML

LINQ to XML

Rate me:
Please Sign up or sign in to vote.
4.72/5 (71 votes)
14 Mar 2008CPOL8 min read 332K   4.9K   149  
An exploration of LINQ and XML in .NET Framework 3.5.
<?xml version="1.0" encoding="utf-8" ?>
<employees>
	<employee id="1" salaried="false">
		<name>Gustavo Achong</name>
		<hire_date>7/31/1996</hire_date>
	</employee>
	<employee id="3" salaried="true">
		<name>Kim Abercrombie</name>
		<hire_date>12/12/1997</hire_date>
	</employee>
	<employee id="8" salaried="false">
		<name>Carla Adams</name>
		<hire_date>2/6/1998</hire_date>
	</employee>
	<employee id="9" salaried="true">
		<name>Jay Adams</name>
		<hire_date>2/6/1998</hire_date>
	</employee>
</employees>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions