上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 55 下一页
摘要: /// /// POSPrinter的摘要说明。 /// 此类处理网络打印,使用了IP端口. /// public class NetPOSPrinter { string ipPort = "192.168.1.212"; ... 阅读全文
posted @ 2015-09-25 14:28 如.若 阅读(1253) 评论(0) 推荐(0) 编辑
摘要: C#LPT端口打印类的操作是什么呢?首先让我们看看什么是LPT端口(打印机专用)?LPT端口是一种增强了的双向并行传输接口,在USB接口出现以前是扫描仪,打印机最常用的接口。最高传输速度为1.5Mbps,设备容易安装及使用,但是速度比较慢,下面是C#LPT端口打印类的操作具体实例:/// ... 阅读全文
posted @ 2015-09-25 13:47 如.若 阅读(1699) 评论(0) 推荐(0) 编辑
摘要: Java 编辑器支持 Code Minings 功能 Java 编辑器现在可以在 Java 元素的上方以“装饰文本”的形式显示实现和引用的数量,即 Code Minings(代码挖掘)功能 Java 编辑器现在可以在 Java 元素的上方以“装饰文本”的形式显示实现和引用的数量,即 Code Min 阅读全文
posted @ 2015-07-06 13:13 如.若 阅读(779) 评论(0) 推荐(0) 编辑
摘要: 冒泡排序1:public void RisePot(ref int [] array) { int a = array.Length; for (int i = 0; i i; j--) { ... 阅读全文
posted @ 2015-07-06 13:07 如.若 阅读(243) 评论(0) 推荐(0) 编辑
摘要: class Program { class Result { public T data; public string Message; public bool Success; ... 阅读全文
posted @ 2015-07-06 11:46 如.若 阅读(3047) 评论(0) 推荐(0) 编辑
摘要: class Program { static void swap( ref int atemp, ref int btemp)//注意ref的使用 { int temp = atemp; atemp = btemp; ... 阅读全文
posted @ 2015-07-06 11:42 如.若 阅读(209) 评论(0) 推荐(0) 编辑
摘要: using System; namespace UnsafeTest{ unsafe struct link { public int x; public link* next; } class Program { stati... 阅读全文
posted @ 2015-07-06 11:38 如.若 阅读(481) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Linq;using System.Text;using System.Web.UI;using System.Web.UI.... 阅读全文
posted @ 2015-07-06 11:34 如.若 阅读(269) 评论(0) 推荐(0) 编辑
摘要: /// /// Base64编码/// /// /// public string base64Encode(string data){ try { byte[] encData_byte = new byte[data.Length]; encData_by... 阅读全文
posted @ 2015-07-06 11:32 如.若 阅读(310) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.IO;using System.Net;using System.Net.Sockets;using System.Text; namespace TestDnsResolver{ ... 阅读全文
posted @ 2015-07-06 11:29 如.若 阅读(1093) 评论(0) 推荐(0) 编辑
上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 55 下一页