码迷,mamicode.com
首页 >  
搜索关键字:linq 表达式树    ( 7079个结果
正在进行中效果
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; ....
分类:其他好文   时间:2014-05-09 16:00:14    阅读次数:209
Csharp 高级编程 C7.1.2
第七章 代理(1)一、代理要声明二、代理使用步骤声明代理初始化代理(使用 实例的方法名 作为参数)使用代理代码示例:/*C7.1.2*/using System;using System.Collections.Generic;using System.Linq;using System.Text;...
分类:其他好文   时间:2014-05-09 10:03:41    阅读次数:449
同步,异步,回调例子
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Threading;using System.Run...
分类:其他好文   时间:2014-05-09 07:46:58    阅读次数:370
C#发送邮件代码
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
NPOI 2.0 读取、编辑、保存Excel文件
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
VS2008中C#开发webservice简单实例
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
.NET 程序员学习路线
1 .NET Framework常见的API要熟练掌握。 2 Linq to Object。Linq to Object是一项很重要的技术。如果没有这项技术,数据的查找和操作的代码会被foreach充满,这样不容易维护,而且有很多代码都是routine代码,可以省略的。 同时,与Linq搭配的技术L...
分类:Web程序   时间:2014-05-08 23:57:10    阅读次数:524
LINQ查询知识总结:案例分
案例:汽车表car,系列表brand,厂商表productorprivate MyCarDataContext _Context = new MyCarDataContext();(1)查询全部汽车信息var list = _Context.Car;LINQ语法:var list = from p ...
分类:其他好文   时间:2014-05-08 23:25:07    阅读次数:443
.net模拟登录博客园,使用httpWebRequest登录并发布随笔文章
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net;using System.IO;using System.Runtime.InteropService...
分类:Web程序   时间:2014-05-08 23:12:06    阅读次数:622
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!