Node.js是一个可以快速构建网络服务及应用的平台。该平台的构建是基于Chrome's JavaScript runtime,它是对google v8引擎进行了封装。Node.js作为一种新兴的后台语言,有如下一些优点:1.RESTful API2.单线程3.非阻塞IO4.V8虚拟机5.事件驱动一...
分类:
Web程序 时间:
2014-07-03 07:20:06
阅读次数:
288
using System;using System.Collections.Generic;using System.Runtime.InteropServices;using System.Windows.Forms;namespace drmaple{ class HotKey { ...
这里选取图片,规格如下: 大小: 关键代码: using System;using System.Diagnostics;using System.Drawing;using System.Drawing.Imaging;using System.IO;using System.Runtime.In...
分类:
其他好文 时间:
2014-07-02 23:02:34
阅读次数:
379
using System.Windows.Forms;using System.Runtime.InteropServices;using System.IO;[DllImport("kernel32.dll", SetLastError = true)]static extern int Writ...
分类:
其他好文 时间:
2014-07-02 22:46:27
阅读次数:
334
来源:http://www.swfdiy.com/?p=12391. 使用xcode新建ios上的static library 工程2. 从air sdk/include里拷贝flashruntimeExtension.h 进工程目录并引用之3. 使用c, 结合flash runtime exten...
分类:
移动开发 时间:
2014-07-02 21:21:37
阅读次数:
272
自定义Exceptionusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runtime.Serialization;namespace Model{ /...
分类:
其他好文 时间:
2014-07-02 21:11:13
阅读次数:
304
原文:文件加密及解密 1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 using System.IO; 5 using System.Runtime.Serialization; 6 using S...
分类:
其他好文 时间:
2014-07-02 20:28:03
阅读次数:
163
代码如下: 1 using System; 2 using System.Runtime.InteropServices; 3 using System.Text; 4 using System.IO ; 5 using System.Windows.Forms; 6 namesp...
分类:
其他好文 时间:
2014-07-02 20:23:24
阅读次数:
241
.Net是一个微软出品的开发平台,不仅仅是适用于Windows操作系统,还适用于mono,Linux等等,.Net库包括两部分:部分库定义了一些基本类型。CTS(common Type System)通用类型系统,CLR(common language Runtime)通用语言运行库。CLR负责管理...
分类:
Web程序 时间:
2014-07-02 14:02:21
阅读次数:
205
1 类Process和ProcessBuilder的比较Process是一个抽象类,一般通过Runtime.exec()或ProcessBuilder.start()间接创建其实例 ;ProcessBuilder是一个最终类,可以通过构造方法来直接创建ProcessBuilder的对象。Proces...
分类:
其他好文 时间:
2014-07-02 10:30:15
阅读次数:
215