XDocument xmlDoc = XDocument.Load(openFileDialog1.FileName.ToString());
var games = from game in xmlDoc.Descendants("Message")
select new
{
Text = game.Element("Text").Value,
To = game.Element("To").Value,
};
richTextBox2.Text = "";
foreach (var game in games)
{
richTextBox2.Text = richTextBox2.Text + "Bericht: " + game.Text + "\n";
richTextBox2.Text = richTextBox2.Text + "Platform: " + game.To + "\n\n";
}
if (richTextBox2.Text == "")
richTextBox2.Text = "No Results.";
XDocument xmlDoc = XDocument.Load(openFileDialog1.FileName.ToString());
var games = from game in xmlDoc.Descendants("Message")
{
Text = game.Element("Text").Value,
To = game.Element("To").Value,
};
richTextBox2.Text = "";
foreach (var game in games)
{
richTextBox2.Text = richTextBox2.Text + "Bericht: " + game.Text + "\n";
richTextBox2.Text = richTextBox2.Text + "Platform: " + game.To + "\n\n";
}
if (richTextBox2.Text == "")
richTextBox2.Text = "No Results.";