随笔分类 -  .Net

摘要:使用C#实现单链表 阅读全文
posted @ 2015-08-27 17:04 Shoring 阅读(1967) 评论(5) 推荐(0)
摘要:介绍什么是线性表,并以C#实现顺序存储的线性表。 阅读全文
posted @ 2015-08-27 10:52 Shoring 阅读(6633) 评论(8) 推荐(0)
摘要:如何扩展Visual Studio 阅读全文
posted @ 2015-08-18 11:26 Shoring 阅读(538) 评论(2) 推荐(0)
摘要:《深入理解C#》笔记 阅读全文
posted @ 2015-05-28 00:08 Shoring 阅读(252) 评论(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 阅读(1082) 评论(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)