码迷,mamicode.com
首页 >  
搜索关键字:generic    ( 7184个结果
简单数据类型转换
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleProgamming{ class Program { static void Main(string...
分类:其他好文   时间:2014-05-26 07:00:58    阅读次数:182
如何查看linux系统是32位还是64位
如何查看linux系统是32位还是64位 2010-11-22 17:00:34分类: LINUX1.#uname -a如果有x86_64就是64位的,没有就是32位的这是64位的# uname -aLinux desktop 2.6.35-23-generic #37-Ubuntu SMP Fri...
分类:系统相关   时间:2014-05-26 06:51:11    阅读次数:456
.net下BerkeleyDB操作封装C#版(附单元测试)
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Runtime.Serialization.Formatters.Binary;using System.Text...
分类:数据库   时间:2014-05-26 06:18:47    阅读次数:443
LaTeX的零零碎碎记录
因为课程需要,最近用LaTeX写了很多篇report. 为了能够更好记忆和查找,我决定要总结一下最近用的比较多的东西。 我的OS为Ubuntu12.04,内核是3.2.0-61-generic,LaTeX版本是pdfTeX 3.1415926-1.40.10-2.2 (TeX Live 2009/Debian),编写用的是vim。 另外,我玩LaTeX基本是要写什么才上网查找资料,没有专门去...
分类:其他好文   时间:2014-05-26 04:58:46    阅读次数:256
字符串相似度计算的方法,使用SQL以及C#实现,本文非原创摘自网络(.NET SQL技术交流群入群206656202需注明博客园)
1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 5 namespace ConsoleApplication6 6 { 7 class semblance 8 { 9 10 ...
分类:数据库   时间:2014-05-26 02:11:57    阅读次数:486
【C#】浏览器源代码
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:其他好文   时间:2014-05-26 00:40:38    阅读次数:214
恶补java(十)---泛型与集合的再学习
其余的就不多说了,一切都在代码中 package com.gc.generic; /** * JDK5 之前集合对象使用问题: * 1、向集合添加任何类型对象 * 2、从集合取出对象时,数据类型丢失,使用与类型相关方法,强制类型转换 * 存在安全隐患 * * ***************************** * * JDK5中的泛型:允许程序员使用泛型技术限制集合的...
分类:编程语言   时间:2014-05-24 14:23:36    阅读次数:299
NVelocity 类操作模板
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Web;using System.IO;using NVelocity.App;using NVelocity...
分类:其他好文   时间:2014-05-24 13:17:32    阅读次数:198
整理常用函数
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runtime.InteropServices;namespace WindowsAPI{class CSha...
分类:其他好文   时间:2014-05-24 12:59:58    阅读次数:366
C#泛型集合—Dictionary<K,V>使用技巧
[csharp]view plaincopy1、要使用Dictionary集合,需要导入C#泛型命名空间 System.Collections.Generic(程序集:mscorlib)2、描述 1)、从一组键(Key)到一组值(Value)的映射,每一个添加项都是由一个值及其相关连的键组成 ...
分类:其他好文   时间:2014-05-24 11:53:21    阅读次数:297
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!