Jak mogę usunąć pusty atrybut xmlns z węzła utworzonego przez XElement

To jest mój kod:

XElement itemsElement = new XElement("Items", string.Empty);
//some code
parentElement.Add(itemsElement);

Potem dostałem to:

<Items xmlns=""></Items>

Element macierzysty nie ma żadnej przestrzeni nazw. Co mogę zrobić, żeby dostaćItems element bez atrybutu pustej przestrzeni nazw?

questionAnswers(1)

yourAnswerToTheQuestion