代码改变世界

阅读排行榜

读写配置文件

2013-06-19 22:14 by hongjiumu, 226 阅读, 收藏,
摘要: 写配置文件public void WriteConfigurationFile(string path) { using (System.IO.StreamWriter streamWriter = new System.IO.StreamWriter(path, true)) { if (_vdtSource == null || _vdtSource.Rows.Count == 0) { return; }... 阅读全文

C++中关于指针入门的最好的文章

2013-02-25 23:58 by hongjiumu, 222 阅读, 收藏,
摘要: 转自:http://www.cnblogs.com/therock/articles/2185878.html 阅读全文

How do I list user defined types in a SQL Server database

2013-03-18 22:14 by hongjiumu, 219 阅读, 收藏,
摘要: How do I list user defined types in a SQL Server database?select * from sys.types where is_user_defined = 1 and name ='BasicModelType' 阅读全文

Work Queue based multi-threading

2013-01-06 00:08 by hongjiumu, 219 阅读, 收藏,
摘要: http://www.codeproject.com/Articles/8886/Work-Queue-based-multi-threading 阅读全文

文件操作

2014-01-18 21:26 by hongjiumu, 217 阅读, 收藏,
摘要: 基于C的文件操作在ANSI C中,对文件的操作分两种方式:流式文件操作和I/O文件操作。一、流式文件操作这种方式的文件操作有一个重要的结构FILE,FILE在stdio.h中定义。FILE这个结构包含了文件操作的基本属性,对文件的操作都要通过这个结构的指针来进行。fopen的原型是:FILE *fopen(const char *filename,const char *mode),fopen实现三个功能:为使用而打开一个流 把一个文件和此流相连接 给此流返回一个FILR指针 参数filename指向要打开的文件名,mode表示打开状态的字符串,其取值如下表 字符串 含义 "r&qu 阅读全文
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 42 下一页