会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Shoring
博客园
首页
新随笔
联系
订阅
管理
2015年8月27日
C#实现数据结构——线性表(下)
摘要: 使用C#实现单链表
阅读全文
posted @ 2015-08-27 17:04 Shoring
阅读(1963)
评论(5)
推荐(0)
C#实现数据结构——线性表(上)
摘要: 介绍什么是线性表,并以C#实现顺序存储的线性表。
阅读全文
posted @ 2015-08-27 10:52 Shoring
阅读(6625)
评论(8)
推荐(0)
2015年8月19日
Node开发入门
摘要: 一步一步介绍如何构建一个简单的http服务器,本文参考《The Node Beginner Book》。
阅读全文
posted @ 2015-08-19 09:54 Shoring
阅读(1102)
评论(1)
推荐(2)
2015年8月18日
《Node.js开发指南》知识整理
摘要: Node是一个可以让JavaScript运行在服务器端的平台,抛弃了传统平台依靠多线程来实现高并发的设计思路,而采用单线程、异步式I/O、事件驱动式的程序设计模型。
阅读全文
posted @ 2015-08-18 14:24 Shoring
阅读(5638)
评论(1)
推荐(3)
扩展Visual Studio IDE
摘要: 如何扩展Visual Studio
阅读全文
posted @ 2015-08-18 11:26 Shoring
阅读(535)
评论(2)
推荐(0)
2015年5月28日
深入理解C#第二版笔记
摘要: 《深入理解C#》笔记
阅读全文
posted @ 2015-05-28 00:08 Shoring
阅读(247)
评论(0)
推荐(0)
2014年2月10日
使用反射给泛型类赋值
摘要: 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
阅读(1079)
评论(0)
推荐(0)
2014年1月16日
.net连接oracle(无客户端)
摘要: 使用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)
公告