using System;
using System.Xml.Linq;
public class Program
{
public static void Main()
const string xml =
@"<?xml version=""1.0"" encoding=""utf-8""?>
<Screen_Monitoring>
<Interval>
0.05
</Interval>
<sendCommand>
<![CDATA[01 30 41 30 41 30 36 02 30 31 44 36 03]]>
</sendCommand>
</Screen_Monitoring>";
var doc = XDocument.Parse(xml, LoadOptions.PreserveWhitespace);
Console.WriteLine(doc);
}