码迷,mamicode.com
首页 >  
搜索关键字:collections deque counter    ( 12297个结果
原创控件代码共享--日期选择控件
原创控件代码共享--日期选择控件 思路:实现日期年月日的选择 1、可以设定年的起止年份 2、排除不正确日期选择的可能 3、使用javascript实现控制 4、使用Text属性方便获取设置日期值 ================================= 代码如下: using System; using System.Collections; using System...
分类:其他好文   时间:2014-05-12 15:21:22    阅读次数:246
[NHibernate]集合类(Collections)映射
系列文章[Nhibernate]体系结构[NHibernate]ISessionFactory配置[NHibernate]持久化类(Persistent Classes)[NHibernate]O/R Mapping基础引言这部分不包括大量的.NET代码例子。我们假定你已经了解如何使用.NET自身的...
分类:系统相关   时间:2014-05-12 12:53:38    阅读次数:408
C# this和base
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { static void Main(stri...
分类:其他好文   时间:2014-05-12 11:46:04    阅读次数:215
WPF更新数据源
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Wind...
分类:其他好文   时间:2014-05-12 04:19:45    阅读次数:244
.Net 4.0 Convert Object to XDocument
将Object转换为XDocment对象代码如下:C# – Object to XDocument 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 usin...
分类:Web程序   时间:2014-05-12 04:11:31    阅读次数:371
html中的js调用c#的winform程序
简单来说,就是在c#客户端winform中加载一个webBrowser1,然后通过webBrowser1中对页面的点击js效果触发c#的函数响应。亲测通过。 C#代码如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Dr...
分类:Windows程序   时间:2014-05-11 14:11:39    阅读次数:496
C# Socket服务端和客户端互相send和receive
服务端1usingSystem;2usingSystem.Collections.Generic;3usingSystem.Text;4usingSystem.Net.Sockets;5usingSystem.Net;6usingSystem.Threading;78namespaceControl...
分类:其他好文   时间:2014-05-11 04:28:28    阅读次数:329
C# 文字滚动特效(上下滚动)
本程序改编至网上下载的一个自定义控件,原控件是左右滚动效果,类似于跑马灯效果,由于项目需要,改编为上下滚动。前期没有实现自动折行,今天刚加上自动折行。using System;using System.Collections;using System.ComponentModel;using Sys...
分类:其他好文   时间:2014-05-10 22:23:43    阅读次数:486
两种方法连接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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!