摘要:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; namespace Unit { c... 阅读全文
摘要:
var tar = Expression.Label(typeof(int)); var p1=Expression.Parameter(typeof(int), "a"); var p2 = Expression.Parameter(typeof(int), "b"); var v1=Expression.Variable(typeof(int), "c"); var v2 = Expression.Assign(v1, Expression.Constant(100)); ... 阅读全文
摘要:
最近我在codeplex上发了一个项目SmartObject(基于framework4.5,目前是1.0版本)。用法如下:// HowToUseusing Spider.Data; //json example from http://www.json.org/example.html ... 阅读全文