using System.Collections;
using System.Collections.Generic;
using System.Data.DataSetExtensions;
using System.Text.RegularExpressions;
using System.Xml.Serialization;
using System.Globalization;
using System.Diagnostics;
public static void Main()
<Text> I need to get the text here</Text>
XmlReader rdr = XmlReader.Create(new System.IO.StringReader(xml));
if (rdr.NodeType == XmlNodeType.Element)
Console.WriteLine(rdr.LocalName);
if (rdr.LocalName == "ChapterHeader")
Console.WriteLine( rdr.ReadInnerXml());