码迷,mamicode.com
首页 >  
搜索关键字:system    ( 49231个结果
HashTable、HashSet和Dictionary的区别
1.HashTable 哈希表(HashTable)表示键/值对的集合。在.NET Framework中,Hashtable是System.Collections命名空间提供的一个容器,用于处理和表现类似key-value的键值对,其中key通常可用来快速查找,同时key是区分大小写;value.....
分类:其他好文   时间:2015-03-13 00:15:51    阅读次数:112
C#利用Windows API 实现关机、注销、重启等操作
using System;using System.Text;using System.Diagnostics;using System.Runtime.InteropServices;namespace SystemManager{ /// /// 枚举类型,指定可以允许的重启操...
分类:Windows程序   时间:2015-03-13 00:09:18    阅读次数:211
生成用户在登录系统是的随机验证码
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
ArcGIS Engine开发模板及代码
以下为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库文件编写入门(笔记)
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
Winform GridView打印类
using System;using System.Collections.Generic;using System.Text;using System.Drawing.Printing;using System.Drawing;using System.Windows.Forms;namespac...
分类:Windows程序   时间:2015-03-12 22:23:36    阅读次数:229
C#常量字段
const 常量字段使用方法 using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace Project5_42{ ...
分类:Windows程序   时间:2015-03-12 22:07:40    阅读次数:195
Android application framework 分析[in process]
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
WindosForm 计算器
计算器 可以分一下类 数字键 + - * / % =和撤销 归零C最简单下面看一下计算器具体的代码using System;using System.Collections.Generic;using System...
分类:Windows程序   时间:2015-03-12 20:49:46    阅读次数:155
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!