上面的XML中,GK是根节点,我们要获取version属性的值,利用Linq怎么写呢
XElement xGK = XElement.Load("GK.xml"); string vsVersion =
xGK.Attribute("version").Value;
分类:
其他好文 时间:
2014-05-09 05:23:19
阅读次数:
434
开源分享最近一个客户要做一个将数据直接输出到指定格式的Excel模板中,略施小计,搞定其中包含了对Excel的增行和删行,打印预览,表头,表体,表尾的控制using
System;using System.Collections.Generic;using System.Linq;using Sys...
分类:
其他好文 时间:
2014-05-09 04:33:07
阅读次数:
495
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Net.Mail;namespace MailGet{ public
class Utility ...
分类:
其他好文 时间:
2014-05-09 03:30:26
阅读次数:
269
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.IO;using NPOI.SS.UserModel;using
NPOI.XSSF.UserModel;na...
分类:
其他好文 时间:
2014-05-09 03:29:58
阅读次数:
318
数据库中的数字和编程语言中的数字有显著的不同,数据库中的数字可以为空,C#中的数字不能为空。int? x = null;
//此时x可以为空测试类(NullableTest)using System;using System.Collections.Generic;using
System.Linq...
分类:
其他好文 时间:
2014-05-09 03:20:29
阅读次数:
303
1.创建工程文件-> 新建->网站 如下图。工程建好后,会自动添加如下代码: 1
using System; 2 using System.Linq; 3 using System.Web; 4 using
System.Web.Services; 5 using System.Web.Servic...
分类:
Web程序 时间:
2014-05-09 02:59:12
阅读次数:
608
1 .NET Framework常见的API要熟练掌握。 2 Linq to Object。Linq
to
Object是一项很重要的技术。如果没有这项技术,数据的查找和操作的代码会被foreach充满,这样不容易维护,而且有很多代码都是routine代码,可以省略的。
同时,与Linq搭配的技术L...
分类:
Web程序 时间:
2014-05-08 23:57:10
阅读次数:
524
案例:汽车表car,系列表brand,厂商表productorprivate
MyCarDataContext _Context = new MyCarDataContext();(1)查询全部汽车信息var list =
_Context.Car;LINQ语法:var list = from p ...
分类:
其他好文 时间:
2014-05-08 23:25:07
阅读次数:
443
Linq给我们带来了很多的便利,不必时时刻刻写sql,可以让一个不懂T-SQL的程序猿也能实现简单编程,但是linq在效率上确实比不上SQL。数据量越大,效率问题就明显。一般查询可以这样写var
v = (from c in en.T_AQI wher...
分类:
其他好文 时间:
2014-05-08 18:34:22
阅读次数:
266
using System;using
System.Collections.Generic;using System.Linq;using System.Text;using
System.Data;using System.Drawing;using System.IO;using System....
分类:
其他好文 时间:
2014-05-08 06:10:59
阅读次数:
395