码迷,mamicode.com
首页 >  
搜索关键字:generic polygon clip    ( 9960个结果
C# 汉字转拼音
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace Common 7 { 8 //Author:GaoBin...
分类:其他好文   时间:2014-06-27 20:20:08    阅读次数:362
[C#]Thread Safe Dictionary in .NET 2.0
using System.Collections.Generic;using System.Threading;namespace CSharpUtilHelpV2{ /// /// 基于.NET 2.0的对于Dictionary线程安全操作工具类 /// 说明 /// 默认读锁超时1000毫秒 /...
分类:Web程序   时间:2014-06-27 20:10:33    阅读次数:359
在WinForm中打印DataGridView
PrintDataGridView.csusing System;using System.Collections.Generic;using System.Text;using System.Drawing;using System.Data;using System.Data.SqlClient...
分类:Windows程序   时间:2014-06-26 22:43:29    阅读次数:320
asp.net文件操作类
/**文件操作类 **/ #region 引用命名空间 using System; using System.Collections.Generic; using System.Text; using System.IO; #endregionnamespace CommonUtilities { ...
分类:Web程序   时间:2014-06-26 22:36:03    阅读次数:216
开发路程(4):C#中的SubString()的用法
先看语法:String.SubString(int index,int length) index:开始位置,从0开始 length:你要取的子字符串的长度例子: 1 using System; 2 using System.Collections.Generic; 3 using Sys...
分类:其他好文   时间:2014-06-26 18:31:49    阅读次数:214
C#数组的排序(正序逆序)
C#数组的排序(正序逆序) 这种排序 超级简单的 !using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication4{ class P...
分类:其他好文   时间:2014-06-26 16:13:39    阅读次数:195
实例365(15)--------------经典排序----插入排序法
前言:此代码设计的比较简洁,可能不太容易理解,插入排序就是每一步都将一个待排数据按其大小插入到已经排序的数据中的适当位置,直到全部插入完毕。一:截图二:代码using System;using System.Collections.Generic;using System.ComponentMode...
分类:其他好文   时间:2014-06-26 12:49:46    阅读次数:227
memcache和redis区别
memcache和redis区别2014年4月27日mood暂无评论memcache官方定义Free & open source, high-performance, distributed memory object caching system, generic in nature, but i...
分类:其他好文   时间:2014-06-25 14:59:31    阅读次数:190
.net之特性(Attribute)
看了一些关于这方面的文档,自我总结: 特性(Attribute)就是对一个方法或类做的一个额外的属性说明,也就是附加说明下面是我自己抄的一个实例程序:using System;using System.Collections.Generic;using System.Linq;using Syst....
分类:Web程序   时间:2014-06-25 14:18:02    阅读次数:161
C#发送邮件
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net.Mail;namespace SendMessage{ class SendEmail {...
分类:其他好文   时间:2014-06-25 12:04:19    阅读次数:251
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!