摘要: CTI-TS EasyICE Elecardstreameyetools VideoEye H264VideoESViewer 学习H264码流,H264码流进行分析 http://blog.csdn.net/leixiaohua1020/article/details/17933821 H264B 阅读全文
posted @ 2021-04-23 00:15 mwy9 阅读(1809) 评论(0) 推荐(0) 编辑
摘要: yield语法糖是对一种复杂行为的简化,将一段代码简化为一种简单的形式。 案例一 public static void Main() { foreach (var i in Fibonacci().Take(20)) { Console.WriteLine(i); } Console.WriteLi 阅读全文
posted @ 2021-02-27 18:17 mwy9 阅读(169) 评论(0) 推荐(0) 编辑
摘要: namespace System.Collections { // // 摘要: // Exposes an enumerator, which supports a simple iteration over a non-generic collection. public interface I 阅读全文
posted @ 2021-02-27 16:48 mwy9 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 1、需要计算出list最后的值 var list = new List<System.Int32>() { 1, 2, 3, 4, 5 }; list.ForEach(element => element++); 考查值类型和引用类型的理解,以及对于 Linq 的工作机理。 正确:123456 2、 阅读全文
posted @ 2021-02-02 22:35 mwy9 阅读(199) 评论(0) 推荐(0) 编辑