码迷,mamicode.com
首页 >  
搜索关键字:collections deque counter    ( 12297个结果
验证码几个小例
例一:在网站要目录下添加ValidateCode.aspx,路径自己定。ValidateCode.aspx:ValidateCode.aspx.cs:using System;using System.Collections.Generic;using System.Web;using System...
分类:其他好文   时间:2014-05-27 01:03:47    阅读次数:430
在VisualStudio 2012上使用MVC3出现错误的解决办法
1. 错误:找不到方法:“System.Collections.Generic.Dictionary`2 System.Web.Razor.Parser.CSharpCodeParser.get_RazorKeywords()”。解决方法:在web.config中删除:
分类:Web程序   时间:2014-05-24 01:34:56    阅读次数:1583
简易时钟
内容来源于开发者社区。用到的代码如下:using UnityEngine;using System.Collections;using System;public class ClockAnimator : MonoBehaviour{ private const float h...
分类:其他好文   时间:2014-05-24 00:47:44    阅读次数:308
Top 10 questions about Java Collections--reference
reference from:http://www.programcreek.com/2013/09/top-10-questions-for-java-collections/The following are the most popular questions of Java collecti...
分类:编程语言   时间:2014-05-23 22:27:40    阅读次数:545
Loader for loading embedded assemblies z
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Reflection;using System.Runtime.InteropServices;namespace...
分类:其他好文   时间:2014-05-23 10:59:24    阅读次数:223
Mediator模式
参考资料《大话设计模式》Mediator(中介者)模式:使各个对象不需要显式的相互调用,从而使其耦合松散。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ds_me...
分类:其他好文   时间:2014-05-23 10:13:17    阅读次数:331
职责链模式、桥接模式
参考资料《大话设计模式》职责链模式:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ds_chainofresponsibility{ class Progr...
分类:其他好文   时间:2014-05-20 12:52:03    阅读次数:328
winform学习日志(二十八)----------将汉字转化为拼音,正则表达式和得到汉字的Unicode编码
一:上图,不清楚的看代码注解,很详细了二:具体代码窗体代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using Sy...
分类:Windows程序   时间:2014-05-20 11:18:57    阅读次数:839
SqlHelper 简单版
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient;namespace AddressBook{...
分类:数据库   时间:2014-05-20 10:08:21    阅读次数:328
【STL基础】deque
deque(double-endedqueue)构造函数://default:deque d; //空的vector//fill:deque d(n); //n个元素的deque,元素默认初始化deque d(n, value); //...
分类:其他好文   时间:2014-05-20 08:30:19    阅读次数:371
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!