码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
C#通过WMI的wind32 的API函数实现msinfo32的本地和远程计算机的系统日志查看功能
先不说如何实现,先来看看效果图: 读取远程的需要提供下远程的计算用户名和密码即可。 如何实现这个代码功能,请看如下代码部分: 实体类: using System; using System.Collections.Generic; using System.Linq; using System.Te
分类:Windows程序   时间:2016-02-23 11:05:47    阅读次数:514
字符串链接strcat
1 #include "stdafx.h" 2 #include "iostream" 3 #include "assert.h" 4 #include "string" 5 6 using namespace std; 7 8 char* mystrcat(char* dest, const ch
分类:其他好文   时间:2016-02-23 11:04:40    阅读次数:128
字符串复制
1 #include "stdafx.h" 2 #include "iostream" 3 #include "assert.h" 4 5 using namespace std; 6 7 char* mystrcpy(char* dest, const char* src); // 1 const
分类:其他好文   时间:2016-02-23 11:04:40    阅读次数:115
C# http下载(支持断点续传)
分享下项目里面自己封装的一个http下载类 功能如下: 1、支持断点续传 2、下载失败自动重试 3、超时等异常处理 using System; using System.Collections.Generic; using System.IO; using System.Net; public cl
分类:Windows程序   时间:2016-02-22 17:28:54    阅读次数:262
常用排序算法
参考如下链接: http://blog.csdn.net/hguisu/article/details/7776068 #include <iostream> #include <memory.h> using namespace std; void print(int a[], int n){ f
分类:编程语言   时间:2016-02-22 16:50:45    阅读次数:216
C#XML操作详解
添加引用 using System.Xml;
分类:Windows程序   时间:2016-02-22 16:46:59    阅读次数:191
记录一个图片处理类,分享给大家参考
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Text; using System.IO; using System.Drawing; using S
分类:其他好文   时间:2016-02-22 16:45:03    阅读次数:270
JSON: Circular Dependency Errors
If you’re using Object Relational Mapping frameworks like Hibernate, and are using the bi-directional mappings then you can be sure of getting the fol
分类:Web程序   时间:2016-02-22 16:39:01    阅读次数:172
kafka Disks and Filesystem(磁盘和文件系统)
转载请注明来源地址:http://www.cnblogs.com/dongxiao-yang/p/5206631.html We recommend using multiple drives to get good throughput and not sharing the same drive
分类:其他好文   时间:2016-02-22 15:48:44    阅读次数:202
CodeForces615B-Longtail Hedgehog-dp/图
记忆化数组记录从这个点的最长下降序列,然后乘以这个点的度,就是ans,维护即可。 #include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int maxn = 1e5+10; const
分类:其他好文   时间:2016-02-22 15:22:25    阅读次数:127
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!