C#-XML基础XElementAttribute获取根节点的⼀级⼦节点中指定属性的名字和值
Framework : 4.7.2
IDE : Visual Studio Community 2019
OS : Windows 10 x64
typetting : Markdown
blog : xinshaopu.blog.csdn
xml file
<?xml version="1.0" encoding="utf-8"?>
<cultures>
网络电信诈骗<taoists count="100"comment="good-t">
<book>
黠怎么读音
<name>道德经</name>
<author>⽼⼦</author>
</book>
<book>
个人特质怎么写
<name>⽂始真经</name>
<author>关尹⼦</author>
</book>
忙的</taoists>
<buddhism count="321"comment="good-d">
<book>
<name>⾦刚经</name>
<author>释迦牟尼</author>
</book>
<book>
<name>六祖坛经</name>
<author>慧能</author>
</book>
</buddhism>
</cultures>
code
using;
using;
脱落酸合成部位
仔细拼音
using;
namespace
{
class Program
{
static void Main(string[] args)
{
信用管理// xml⽂件的格式必须是正确的
XDocument file = XDocument.Load("l");
// 获取xml⽂件的根节点
XElement xmlRoot = file.Root;
// 获取根节点下的第⼀级⼦节点
IEnumerable<XElement> nodeFirst = xmlRoot.Elements();
foreach(var item in nodeFirst)
{
Console.WriteLine(item.Attribute("count").Name +" "+ item.Attribute("count").Value);
}
Console.ReadKey();
}
}
}
result
count 100
count 321
resource
文爱句子[⽂档] /zh-cn/dotnet/csharp
[规范] /dotnet/docs/tree/master/docs/standard/design-guidelines [⽂档 - XML] /x.asp
[⽂档 - XML] /xml/xml-tutorial.html
[源码]
[平台] www.csdn
[ IDE ] /zh-hans
[ Core] dotnet.github.io
感恩曾经帮助过 ⼼少朴 的⼈。
XML,DTD,XMLSchema,XSL,SVG可以适当地了解。
C#优秀,值得学习。 Core具有跨平台的能⼒,值得关注。
Console,WinForm,WPF,ASP,Azure WebJob,WCF,Unity3d,UWP可以适当地了解。
注:此⽂是⾃学笔记所⽣,质量中下等,故要三思⽽后⾏。新⼿到此,不可照搬,应先研究其理象数,待能变通之时,⾃然跳出深坑。欢迎关注微信公众号:悟为⽣⼼