public static void Main(string[] args)
<BibUnstructured>Some text</BibUnstructured>
<BibUnstructured>another text</BibUnstructured>
var doc = XDocument.Parse(xml);
foreach (var book in doc.Descendants("BibUnstructured").ToList())
book.ReplaceWith(book.Nodes());