摘要: 使用C#实现单链表 阅读全文
posted @ 2015-08-27 17:04 Shoring 阅读(1936) 评论(5) 推荐(0) 编辑
摘要: 介绍什么是线性表,并以C#实现顺序存储的线性表。 阅读全文
posted @ 2015-08-27 10:52 Shoring 阅读(6523) 评论(8) 推荐(0) 编辑
摘要: 一步一步介绍如何构建一个简单的http服务器,本文参考《The Node Beginner Book》。 阅读全文
posted @ 2015-08-19 09:54 Shoring 阅读(1092) 评论(1) 推荐(2) 编辑
摘要: Node是一个可以让JavaScript运行在服务器端的平台,抛弃了传统平台依靠多线程来实现高并发的设计思路,而采用单线程、异步式I/O、事件驱动式的程序设计模型。 阅读全文
posted @ 2015-08-18 14:24 Shoring 阅读(5569) 评论(1) 推荐(3) 编辑
摘要: 如何扩展Visual Studio 阅读全文
posted @ 2015-08-18 11:26 Shoring 阅读(529) 评论(2) 推荐(0) 编辑
摘要: 《深入理解C#》笔记 阅读全文
posted @ 2015-05-28 00:08 Shoring 阅读(240) 评论(0) 推荐(0) 编辑
摘要: public static List ToList( this OracleDataReader reader ) { List list = new List(); Type type = typeof( T ); while( reader.Read() ) { T t = Activator.CreateInstance(); int filedCount = reader.FieldCount; ... 阅读全文
posted @ 2014-02-10 10:00 Shoring 阅读(1069) 评论(0) 推荐(0) 编辑
摘要: 使用DDTek.Oracle.dll可以在没有安装oracle客户端的情况下连接远程的oracle。 string _conString = "Host=192.168.1.1;Port=1521;User ID=userid;Password=password;SID=sid";List> dics = new List>();OracleConnection conn = new OracleConnection( _conString );conn.Open();OracleCommand cmd = conn.CreateCommand();cmd.Co 阅读全文
posted @ 2014-01-16 14:36 Shoring 阅读(170) 评论(0) 推荐(0) 编辑