博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
表达式树使用(一)
阅读量:5097 次
发布时间:2019-06-13

本文共 1172 字,大约阅读时间需要 3 分钟。

万物只要有开始,就必有结束


Program.cs

class Program    {        static void Main(string[] args)        {                        Expression
> expression = (a, b) => a + b; Console.WriteLine("这是表达式主体{0}", expression.Body); Console.WriteLine("这是实际表达式{0}", expression); //int d = expression(3, 5); Func
function = (a, b) => a + b; Func
function2 = (a,b) => (a < b); Expression
> Expression2 = (a, b) => (a < b); Console.WriteLine("这是expression2的主体{0}", Expression2.Body); Expression
> lessThan = i => i < 5; Console.WriteLine(lessThan); Console.WriteLine("表达式的结果{0} ", lessThan); Expression
> plusEquals = (a) => (a+a); Console.WriteLine("这是plusEqual的主体{0}", plusEquals.Body); Console.WriteLine(plusEquals); //Int32 c = plusEquals(3); int c = plusEquals.Compile()(3); Console.WriteLine("这里是plusEquals表达式的结果{0}", c); //我想在这里做一个sql查询 //var query = from cus in db.Customers where cus.City == "Nantes" select new { cus.City, cus.CompanyName }; Console.ReadLine(); } }

运行结果如图:

这里写图片描述


转载于:https://www.cnblogs.com/Wulex/p/6962303.html

你可能感兴趣的文章
linux 同步时间 调试core内核
查看>>
PAT Basic 1085
查看>>
ios app真正的相互!!调用
查看>>
B-tree
查看>>
springMVC传递一组对象的接受方式
查看>>
收藏一个虚函数表以及虚表指针介绍的文章
查看>>
POJ---2492 A Bug's Life[并查集]
查看>>
[BZOJ1195] [HNOI2006]最短母串
查看>>
final阶段140字评论
查看>>
zookeeper集群搭建
查看>>
Jenkins-在windows上配置自动化部署(Jenkins+Gitblit)
查看>>
ng-if可见
查看>>
[AGC003]E - Sequential operations on Sequence
查看>>
Effective JAVA 思维导图
查看>>
【转】mysqldump
查看>>
Python Matplotlib作图指南
查看>>
A股主要指数的市盈率(PE)估值高度
查看>>
mysql语法备忘
查看>>
文件操作
查看>>
dockerfile
查看>>