1.HashTable 哈希表(HashTable)表示键/值对的集合。在.NET Framework中,Hashtable是System.Collections命名空间提供的一个容器,用于处理和表现类似key-value的键值对,其中key通常可用来快速查找,同时key是区分大小写;value.....
分类:
其他好文 时间:
2015-03-13 00:15:51
阅读次数:
112
using System;using System.Text;using System.Diagnostics;using System.Runtime.InteropServices;namespace SystemManager{ /// /// 枚举类型,指定可以允许的重启操...
C#随机生成码类:ValidateCode.ashx using System; using System.Web; using System.Drawing; using System.Web.SessionState; //一般处理程序中使用session,必须实现一个接口 public cla...
分类:
其他好文 时间:
2015-03-12 23:57:16
阅读次数:
241
byte[] byteimg = File.ReadAllBytes(@"\zk.jpg"); /// /// 将图片转为字符数组 /// /// /// public byte[] ImageToByte(System.Drawing.Image img) { MemoryStr...
分类:
数据库 时间:
2015-03-12 23:56:33
阅读次数:
209
以下为AE开发软件自带的模板及代码,开发工具为VS 2012+ArcGIS Engine 10.2。
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using ...
分类:
其他好文 时间:
2015-03-12 22:39:53
阅读次数:
349
linux库文件的编写作者: laomai地址: http://blog.csdn.net/laomai本文主要参考了如下资料⑴hcj写的"Linux静态/动态链接库的创建和使用"地址 http://fanqiang.chinaunix.net/system/linux/2006-05-08/412...
分类:
系统相关 时间:
2015-03-12 22:30:52
阅读次数:
147
using System;using System.Collections.Generic;using System.Text;using System.Drawing.Printing;using System.Drawing;using System.Windows.Forms;namespac...
const 常量字段使用方法 using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace Project5_42{ ...
application activity
application service
application UI system
application sdk tool
JVM1 activitythe first JVM instance => zygote app_main->AndroidRuntime(now start jvm instance,and start to load zyog...
分类:
移动开发 时间:
2015-03-12 20:57:01
阅读次数:
92
计算器 可以分一下类 数字键 + - * / % =和撤销 归零C最简单下面看一下计算器具体的代码using System;using System.Collections.Generic;using System...