私はこのxmlファイルを持っています: http://www.studiovincent.net/list.xml
値を取得するには、C# のパーサーが必要です。このコードを使用しています:
XmlReader xmlReader = XmlReader.Create("http://www.studiovincent.net/list.xml");
while (xmlReader.Read())
{
if ((xmlReader.NodeType == XmlNodeType.Element) && (xmlReader.Name == "field"))
{
if (xmlReader.HasAttributes)
Console.WriteLine(xmlReader.GetAttribute("name") + ": " + xmlReader.GetAttribute("price"));
}
}
Console.ReadKey();
しかし、私はこの結果を出力します:
name:
username:
age:
hair:
name:
username:
age:
hair:
name:
username:
age:
hair:
どうすればこの結果を得ることができますか?
Vincent
Hill
31
black
John
Tedelon
27
brown
Michael
Lopez
20
red
Frank
Lopez
25
black
で、この結果?
Vincent
John
Michael
Frank
前もって感謝します!