文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>LINQ TO XML练习

LINQ TO XML练习

时间:2011-02-25  来源:June Zhang

下面是我朋友给的练习

View Code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml.Linq;
using System.Text;

namespace ConsoleApplication
{
class Program
{
static void Main(string[] args)
{
Dictionary
<string, string> xDic = new Dictionary<string, string>();
XDocument xDoc
= XDocument.Load("D:\\Example.xml");
XElement xEle
= xDoc.Root;
IEnumerable
<XElement> xEnum = xEle.Elements();
foreach (XElement xEleJSCommand in xEnum)
{
string strKey = "JS:";
strKey
+= xEleJSCommand.Attribute("xmlns").Value.ToString() + ".";
IEnumerable
<XElement> xEleCom = xEleJSCommand.Elements();
foreach (XElement xEleCommand in xEleCom)
{
strKey
+= xEleCommand.Attribute("name").Value.ToString();
xDic.Add(strKey, xEleCommand.Value.ToString());
}
}
foreach (KeyValuePair<string, string> kevp in xDic)
{
Console.WriteLine(
"Key:{0}\nvalue:{1}", kevp.Key, kevp.Value);
}
Console.ReadKey();
}
}
}
相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载