See Also: XmlCDataSection Members
CDATA sections are like text nodes except that they are used to wrap character data containing <'s and &'s. CDATA sections begin with "<![CDATA[" and end with "]]>". For example:
XML Example
<content> <![CDATA[ Any characters except the sequence bracket-bracket-> are OK here. ]]> </content>