08 2013 档案

摘要:前几天看了一下C# To IL 系列的文章,感觉写的不错,于是今天自己动手做了一个小低抹(demo),注释加上了自己的理解,以便加深记忆,如果有什么不对的地方,欢迎指正!using System;using System.Collections.Generic;using System.Text;using System.Linq;using System.Reflection;using System.Reflection.Emit;using System.Dynamic;namespace ConsoleApplication1{ class Program { ... 阅读全文
posted @ 2013-08-28 12:02 netqiang 阅读(511) 评论(0) 推荐(0)
摘要:1 using System; 2 using System.Collections.Generic; 3 using System.Data; 4 using System.Diagnostics; 5 using System.Linq; 6 using System.Linq.Expressions; 7 using System.Reflection; 8 using System.ComponentModel; 9 10 public static class DataReaderExtensions 11 { 12 #region Priva... 阅读全文
posted @ 2013-08-09 17:29 netqiang 阅读(345) 评论(0) 推荐(0)