using System;
using System.Linq;
using System.Text;
using System.Xml.Linq;
public class Program
{
public static void Main()
XElement x = new XElement("testElement");
x.Elements("position").FirstOrDefault().Value = string.Empty;
}