Click here to Skip to main content
15,896,118 members
Articles / Programming Languages / C#

Recursion made simple

Rate me:
Please Sign up or sign in to vote.
4.60/5 (42 votes)
27 Jul 2012CPOL11 min read 223.7K   3.1K   101  
An introductory tutorial on recursion technique using C#.NET
<?xml version="1.0" encoding="utf-8"?>
<!-- XML Data File used in Structural Recursion Example-->
<RootNode>
	<A1>
		<A2>
			<A3>Value1</A3>
		</A2>
		<A4>Value2</A4>
		<A5>Value3</A5>
	</A1>
	<B1>Value4</B1>
</RootNode>

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)


Written By
Software Developer (Senior)
India India
Working as Senior Developer in US based MNC. Interested in R&D, writing/reading techinical articles, sci-fi movies, playing synthesizer.

Comments and Discussions