标签:style blog class code color c
<?xml version="1.0" encoding="UTF-8"?> <!--课程封面信息 --> <GK version="文"> <A/> </GK>
上面的XML中,GK是根节点,我们要获取version属性的值,利用Linq怎么写呢
1
2 |
XElement xGK = XElement.Load( "GK.xml" ); string
vsVersion = xGK.Attribute( "version" ).Value; |
标签:style blog class code color c
原文地址:http://www.cnblogs.com/niuge/p/3716025.html