using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:
其他好文 时间:
2019-06-11 12:59:36
阅读次数:
72
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Net; using System.Dia... ...
分类:
其他好文 时间:
2019-06-11 12:57:43
阅读次数:
102
承接上一篇,我们继续说下.net4.0中的同步机制,是的,当出现了并行计算的时候,轻量级别的同步机制应运而生,在信号量这一块 出现了一系列的轻量级,今天继续介绍下面的3个信号量 CountdownEvent,SemaphoreSlim,ManualResetEventSlim。 一:Countdow ...
分类:
其他好文 时间:
2019-06-10 18:29:52
阅读次数:
82
1.将json字符串解析成指定对象 2.将json字符串解析成数组 ...
分类:
Web程序 时间:
2019-06-09 00:44:08
阅读次数:
115
public ActionResult sanji() { var list = bl.sanji(0); var linq = from i in list select new SelectListItem { Text=i.name, Value=i.id.ToString() }; View ...
分类:
其他好文 时间:
2019-05-31 21:39:08
阅读次数:
110
WPF 多语言有各种实现方式。如 https://www.codeproject.com/Articles/35159/WPF-Localization-Using-RESX-Files,后来发现这个不够直接和简洁,在看到这里 https://www.cnblogs.com/yang-fei/p/4 ...
分类:
编程语言 时间:
2019-05-28 17:07:50
阅读次数:
95
什么是Linq表达式?什么是Lambda表达式? 参照:https://www.cnblogs.com/zhaopei/p/5746414.html ...
分类:
其他好文 时间:
2019-05-25 20:06:00
阅读次数:
130
using System; using System.Collections.Generic; using System.Linq; namespace Validation // include rules in the domain that may vary from instance to ... ...
分类:
其他好文 时间:
2019-05-25 19:36:22
阅读次数:
84
linq就是表达式树的最重要价值的体现 因为 可以通过 lambda表达式,直接转换为 expression tree所以,通过linq 所构造 的连式lambda就可以构造任意复杂的算法数据结构 而对这个算法数据结构的,解析,和翻译将可以帮助 实现 跨语言的算法 平移,比如 linq to sql ...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:
其他好文 时间:
2019-05-24 12:45:01
阅读次数:
122