public class com { /// /// 把参数转为JSON字符串 /// ///
所有的参娄 /// JSON字符串 public static Hashtable StringToJSON(...
分类:
Web程序 时间:
2014-05-19 08:25:40
阅读次数:
311
转自:LIB和DLL的区别与使用共有两种库:一种是LIB包含了函数所在的DLL文件和文件中函数位置的信息(入口),代码由运行时加载在进程空间中的DLL提供,称为动态链接库dynamic
link library。一种是LIB包含函数代码本身,在编译时直接将代码加入程序当中,称为静态链接库static...
分类:
其他好文 时间:
2014-05-18 20:36:28
阅读次数:
500
首先写一段代码如下:namespace ConsoleApplication3{ class
Program { static void Main(string[] args) { Console.WriteLine("Hello, ...
分类:
数据库 时间:
2014-05-18 20:17:54
阅读次数:
468
public class AllSort{ static String[] buf =
{"1","2","44","7"}; public static void main(String[] args) { perm(buf, 0, 3);
}...
分类:
其他好文 时间:
2014-05-18 20:02:39
阅读次数:
343
1.环境变量的配置:path键 值:bin文件夹的位置 classpath键
值:.2.第一个HelloWorld:public class Hello{ public static void main(String args[]){
System.out.print("Hello World!"....
分类:
移动开发 时间:
2014-05-17 21:41:13
阅读次数:
460
java关键字,static final,instanceof等
分类:
编程语言 时间:
2014-05-17 20:25:28
阅读次数:
440
using System;using System.Collections.Generic;using
System.Linq;using System.Text;namespace 索引{ class Program { static void
Main(string[]...
分类:
其他好文 时间:
2014-05-17 20:10:36
阅读次数:
254
1 #include "windows.h" 2 #include "iostream" 3
#include "stdio.h" 4 using namespace std; 5 6 static LPCTSTR
q_szMutexName="w2kdg.ProcTerm.mutex.Suic.....
/// /// DataTable转成Json /// /// /// public static
string DataTableToJson(DataTable dt) { StringBuilder jsonBuilder = new
StringBuilder(); ...
分类:
Web程序 时间:
2014-05-17 18:40:18
阅读次数:
369
1 namespace ExtensionMethod 2 { 3 class Program 4 {
5 static void Main(string[] args) 6 { 7 //要求很简单,判断字符串是否长度大于三并...
分类:
其他好文 时间:
2014-05-17 18:25:24
阅读次数:
227