C++实现ping功能的代码 代码段

utility * FILE: base/applications/network/ping/ping.c * PURPOSE: Network test utility * PROGRAMMERS: */

fwwc 2015-01-08   3059   0

C#操作PowerPoint的基本代码 代码段

C#操作PowerPoint的基本代码,包括打开ppt文件、读取幻灯页,插入幻灯片,自动播放等 using System; using System.Collections.Generic; using

b5cw 2015-04-22   1810   0
C#  

C#堆排序代码 代码段

private static void Adjust (int[] list, int i, int m) { int Temp = list[i]; int j = i * 2 + 1; while (j <= m) { //more children if(j < m) if(list[j] < list[j + 1]) j = j + 1; //compare roots and the o

b5cw 2015-04-22   1019   0
C#  

C# 运行cmd命令的代码 代码段

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Diagnostics; namespace ConsoleApplication1 { class command { public static st

xf3f 2015-04-24   957   0
C#  

C++全排列实现代码 代码段

比如对于字符串”abc”, 第一步:求所有可能出现在第一个位置的字符即:a,b,c。 使用方法:把第一个字符和后面的b、c字符进行交换。 第二步:把第一个字符后面的所有字符仍然看成两部分,即

jopen 2015-06-30   1570   0
C/C++  

linq to xml操作XML的c#代码 代码段

ttribute构造函数可以构造元素的属性;使用XText构造函数可以构造节点内的文本。 如下实例代码: class Program { static void Main(string[] args)

KirSNVD 2016-02-20   755   0
c#   linq-to-xml   LINQ  

c#实现Ping功能代码 代码段

System.Net.NetworkInformation.Ping png = new System.Net.NetworkInformation.Ping(); try { PingReply rply = png.Send("outofmemory.cn"); Console.Write(rply.RoundtripTime.ToString()); Console.ReadLine();

wufflina 2016-02-20   1329   0
c#   ping  
P12

  C# 软件自动在线更新代码 文档

   程序部份代码参考自:http://www.cnblogs.com/hjs1573/archive/2007/09/11/889826.html 服务器空间为.Net 2.0空间 注意:网盘失效

daliao8888 2014-01-23   3014   0
.NET开发   C#  

2048 C++源代码by Reason 经验

! 以下是源代码: /*By Reason*/ #include #include #include #include

jopen 2014-04-09   33652   0

海盗分金问题C++代码 经验

海盗分金问题C++代码

xxy220543 2015-05-21   18337   0
P16

  C++浅入难代码 文档

常用流状态.打印倒三角vector几种用法二维数组若干个向量按长短排序.遍历数组的6种方法浮点数的精度误差练习逻辑判断另一种向量参数传递.

opencvp 2016-03-02   1938   0

清除word格式的C#代码 博客

static void Main(string[] args) { if (args.Length == 0 || String.IsNullOrEmpty(args[0])) { Console.WriteLine("No filename provided."); return; } string filepath = args[0]; if (Path.GetFileName(filepat

jopen 2012-02-01   1302   0

C++开源代码项目汇总 经验

Google的C++开源代码项目 v8  -  V8 JavaScript Engine V8 是 Google 的开源 JavaScript 引擎。 V8 采用 C++ 编写,可在谷歌浏览器(来自

jopen 2014-10-21   131935   0

快速排序C实现代码 代码段

#include <stdio.h> /*输出*/ void show(int [],int); void quickSort(int array[],int left,int right) { if(left>right) return; /*取最左边的值为pivot(基准)*/ int i=left,j=right,pivot=array[left]; while(i<j) { while(

cm54 2015-04-09   983   0
排序   C/C++  

C#测试线程使用的演示代码 代码段

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Thr

pb44 2015-05-02   2411   0
C#  

C#解压GZip文件代码 代码段

public void ungzip(string path, string decomPath, bool overwrite) { //for overwriting purposes if (File.Exists(decomPath)) { if (overwrite) { File.Delete(decomPath); } else { throw new IOException("Th

cymt 2015-05-02   1800   0
C#  

C#读取host文件代码 代码段

string str; StreamReader sr = new StreamReader(@"C:\windows\system32\drivers\etc" + "\\hosts", false);

xb3b 2015-05-30   1618   0
C#  

C 语言高效编程与代码优化 经验

在本篇文章中,我收集了很多经验和方法。应用这些经验和方法,可以帮助我们从执行速度和内存使用等方面来优化C语言代码。 简介 在最近的一个项目中,我们需要开发一个运行在移动设备上但不保证图像高质量的轻量级JP

ayrp4420 2017-03-14   42634   0

C语言连接mysql源代码实例 经验

不需要按照ODBC驱动。通过mysql自带的3306端口进行数据传输。 注意libmysq.dll与对应服务器版本的关系。

jopen 2013-11-19   21129   0

C#给图片加水印的简单代码 代码段

实现本网站图片保护功能 类: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Drawing;//image的命名空间 namespace 实现本网站图片保护功能 { public class yanzhengma:IHttpHandler { pub

enpc 2015-05-02   2991   0
C#  
1 2 3 4 5 6 7 8 9 10