Trabalhando com XML e XSL

PRIMEIRA EDIÇÃO
Estou buscando oCriança 1 tag em um DropDownList em um formulário C #, o PLZ sugere o código de melhores práticas (C #) para excluir a tag Parent e todas as suas tags filho em um arquivo XML. Exemplo:

    <Parents>
      <Parent>
        <Child 1>Something</Child 1>
        <Child 2>Something</Child 2>
        <Child 3>Something</Child 3>
        <Child 4>Something</Child 4>
      </Parent>
      <Parent>
        <Child 1>Something 1</Child 1>
        <Child 2>Something 1</Child 2>
        <Child 3>Something 1</Child 3>
        <Child 4>Something 1</Child 4>
      </Parent>
    </Parents>

---Pergunta anterior ---
Como posso inserir a seguinte tag da folha de estilo no meu novo arquivo xml criado usando o código C # ????

<?xml-stylesheet type="text/xsl" href="issuez.xsl"?>

Código C # para criar o arquivo xml: -

new XDocument(
                        new XElement("issues",
                            new XElement("issue",
                            new XElement("cat", comboBox1.Text),
                            new XElement("desc", richTextBox1.Text),
                            new XElement("end", dateTimePicker1.Text),
                            new XElement("att", textBox2.Text)
                            )
                        )
                        ).Save(path);

questionAnswers(4)

yourAnswerToTheQuestion