XML LINQ C#

using System;
using System.Linq;
using System.Xml.Linq;
using System.Collections;
using System.Collections.Generic;
public class MainClass{
   public static void Main(){
        XElement el = XElement.Parse("This is mixed content");
        Console.WriteLine("{0}", el.Value);
   }
}