C/C++
Semaphores
Semaphores
展开
-
C++ RasDial之调用RasEnumEntries遍历系统中存在的宽带连接名称
#include #include #include "ras.h" #include "raserror.h" #pragma comment(lib, "rasapi32.lib") using namespace std; DWORD wmain(){ DWORD dwCb = 0; DWORD dwRet = ERROR_SUCCESS; DWORD d原创 2014-11-13 03:42:38 · 2488 阅读 · 1 评论 -
C#高级编程 学习笔记(一) 第一个C#程序
第一个C#程序 1. 编写代码 使用文本编辑器EditPlus 新建一个名为First.cs 的文件,键入以下是代码: namespace Wrox { public class MyFirstClass { static void Main() { Console.WriteLine ("Hello from Wrox."); /// 向控制室输出内容 Consol原创 2015-03-06 09:59:04 · 577 阅读 · 0 评论