Click here to Skip to main content
15,885,141 members
Articles / Programming Languages / C# 4.0

Quick XML Reader

Rate me:
Please Sign up or sign in to vote.
4.78/5 (18 votes)
23 Feb 2011CPOL4 min read 85.1K   14.8K   72  
A quick XML interpreter for large XML files.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Trezorix.Qxr.Streamer.EventArguments
{
	public class ReadyForPresentationEventArgs : System.EventArgs
	{

		internal ReadyForPresentationEventArgs(string Rtf)
		{
			m_sRtfFragment = Rtf;
		}

		private string m_sRtfFragment = null;

		public string RtfFragment
		{
			get { return m_sRtfFragment; }
		}


	}
}

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
Architect http://4dotnet.nl
Netherlands Netherlands
I'm developing software for over two decades. I'm working as a cloud solution architect and a team lead at 4DotNet in The Netherlands.

In my current position, I love to help customers with their journey to the cloud. I like to create highly performant software and to help team members to a higher level of software development.

My focus is on the Microsoft development stack, mainly C# and the Microsoft Azure Cloud. I also have a strong affinity with Angular. As a result of my contributions to the community, I received the Microsoft MVP Award for Microsoft Azure.

Comments and Discussions