码迷,mamicode.com
首页 >  
搜索关键字:collections 集合工具类    ( 9852个结果
[NHibernate]集合类(Collections)映射
系列文章[Nhibernate]体系结构[NHibernate]ISessionFactory配置[NHibernate]持久化类(Persistent Classes)[NHibernate]O/R Mapping基础引言这部分不包括大量的.NET代码例子。我们假定你已经了解如何使用.NET自身的...
分类:系统相关   时间:2014-05-12 12:53:38    阅读次数:408
两种方法连接MySql数据库
1、用MySQLDriverCS连接MySQL数据库先下载和安装MySQLDriverCS,在安装文件夹下面找到MySQLDriver.dll,然后将MySQLDriver.dll添加引用到项目中。 using System; using System.Collections.Gen...
分类:数据库   时间:2014-05-10 19:12:23    阅读次数:453
C# Parallel类的作用
System.Threading.Tasks.Parallel是能够以并行的方式迭代数据集合(实现了IEnumerable的对象),它主要提供2个方法:For()和ForEach() 事例: using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Net.Consol...
分类:其他好文   时间:2014-05-10 08:59:10    阅读次数:302
C# get set方法
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace GetSetTest{ class A { ...
分类:其他好文   时间:2014-05-10 07:39:24    阅读次数:220
公共的Json操作类
using System;using System.Data;using System.Text;using System.Collections.Generic;using System.Reflection;using System.Data.Common;using System.Collec...
分类:Web程序   时间:2014-05-10 07:27:45    阅读次数:474
其他层次的模板
在【CodeSmith快速入门之四:模型层的生成】中,我们介绍了模型层模板的生成,在本章我们将会介绍其他层次的模板。因为每个层次的模板编写都比较类似,所以这次不会对模板代码进行详细的说明,尽请谅解,谢谢1、数据访问接口代码生成模版usingSystem;usingSystem.Collections...
分类:其他好文   时间:2014-05-10 07:09:07    阅读次数:431
C# 索引器
使用索引器的目的是为了能够像数组一样访问类中的数组型的对象。using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace...
分类:其他好文   时间:2014-05-10 05:43:44    阅读次数:218
模板方法模式
参考资料:《大话设计模式》//模板方法模式--处理问题的步骤相同,但步骤的实现不同using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ds_templatemethod...
分类:其他好文   时间:2014-05-10 05:19:04    阅读次数:322
简单工厂模式与Strategy模式
参考资料:《大话设计模式》简单工厂模式://////简单工厂模式实验,2014.05.07---通过工厂类实例化对象///using System;using System.Collections.Generic;using System.Linq;using System.Text;namespa...
分类:其他好文   时间:2014-05-10 05:16:31    阅读次数:332
代理模式(Proxy)
参考资料《大话设计模式》using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ds_proxy{ class Program { static ...
分类:其他好文   时间:2014-05-10 05:15:33    阅读次数:290
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!