码迷,mamicode.com
首页 >  
搜索关键字:generic polygon clip    ( 9960个结果
TraceLog.cs 累积 C#
1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 using System.IO; 5 using System.Diagnostics; 6 7 namespace Utility...
分类:其他好文   时间:2014-05-17 00:50:37    阅读次数:249
C#实体转换
using System; using System.Collections.Generic; using System.Data; using System.Data.Common; using System.Reflection; /// /// 实体阅读器类,可以从DataTa...
分类:其他好文   时间:2014-05-17 00:20:57    阅读次数:341
a helper class for generating xls or csv file
using System;using System.Collections.Generic;using System.Linq;using System.Text;using Microsoft.Office.Interop.Excel;namespace Reuters.ProcessQualit...
分类:其他好文   时间:2014-05-16 19:54:35    阅读次数:286
C# List<T>用法
所属命名空间:using System.Collections.Generic; List类是 ArrayList 类的泛型等效类。 该类使用大小可按需动态增加的数组实现 IList 泛型接口。泛型的好处: 它为使用 c#语言编写面向对象程序增加了极大的效力和灵活性。不会强行对值类型进行装箱和拆箱,...
分类:其他好文   时间:2014-05-16 19:39:12    阅读次数:346
Asp.net动态生成表单
control.ascx using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls...
分类:Web程序   时间:2014-05-16 08:36:25    阅读次数:362
c# 单链表实现 简单示例(可复制直接运行)
最近学习数据结构,发现c# 其实和c 的链表的实现差不多的下面是一段可直接运行的代码 1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 using System.Threading; 5 ...
分类:其他好文   时间:2014-05-16 06:24:02    阅读次数:663
Asp.net中XML与DataSet、DataTable之间的转换
using System;using System.Collections.Generic;using System.Text;using System.Data;using System.Xml;using System.IO;using System.Web;namespace Utility{...
分类:Web程序   时间:2014-05-14 09:54:50    阅读次数:324
poj 2007 Scrambled Polygon 极角排序
1 /** 2 极角排序输出,,, 3 主要atan2(y,x) 容易失精度,,用 4 bool cmp(point a,point b){ 5 if(cross(a-tmp,b-tmp)>0) 6 return 1; 7 if(cross(a-tmp,b-tmp)...
分类:其他好文   时间:2014-05-13 20:05:34    阅读次数:242
[转]C#读写TEXT文件
1、使用FileStream读写文件文件头:using System; using System.Collections.Generic; using System.Text; using System.IO; 读文件核心代码: byte[] byData = new byte[100]; char...
分类:其他好文   时间:2014-05-13 10:57:52    阅读次数:262
POJ 2002 点的hash
Squares Time Limit: 3500MS   Memory Limit: 65536K Total Submissions: 15489   Accepted: 5864 Description A square is a 4-sided polygon whose sides have equal length and adja...
分类:其他好文   时间:2014-05-11 20:56:36    阅读次数:416
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!