上一页 1 ··· 108 109 110 111 112 113 114 115 116 ··· 129 下一页
摘要: c# yield关键字的用法 1.yield实现的功能yield return:先看下面的代码,通过yield return实现了类似用foreach遍历数组的功能,说明yield return也是用来实现迭代器的功能的。 using static System.Console; using Sys 阅读全文
posted @ 2021-07-01 23:58 China Soft 阅读(79) 评论(0) 推荐(0)
摘要: 声明:本文部分内容来自 《more effective c#》,特此声明 c# 里面的 yield return 没什么高大上的,就是一个一个的 return。但是我们不能小看这种用法,他能给编程带来很多性能上的提高以及用法上的方便(减少遍历次数,增加重用性)。 我们来看一个例子: 对于函数 pub 阅读全文
posted @ 2021-07-01 23:50 China Soft 阅读(101) 评论(0) 推荐(0)
摘要: 在网上直接下载别人编译好的Qt库,为自己使用省了不少事。但往往也会遇到些问题,其中Qt version is not properly installed,please run make installQt没有被正确安装,请运行make install这个问题是比较常见的一个。网上看了一个帖子,终于 阅读全文
posted @ 2021-06-30 00:30 China Soft 阅读(1480) 评论(0) 推荐(1)
摘要: https://blog.csdn.net/just_lion/article/details/73468616 win7在ping localhost时显示地址为 [::1],地址不可达。 如果想禁掉IPV6地址,可以设置注册表: HKEY_LOCAL_MACHINE\SYSTEM\Current 阅读全文
posted @ 2021-06-29 15:15 China Soft 阅读(727) 评论(0) 推荐(0)
摘要: The NuGet package sources are configured through Visual Studio, but they're stored in a per-user configuration file, found at c:\Users\$USER\AppData\R 阅读全文
posted @ 2021-06-24 14:52 China Soft 阅读(71) 评论(0) 推荐(0)
摘要: https://zimjs.com/components/ 阅读全文
posted @ 2021-06-23 17:14 China Soft 阅读(50) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/mgy_2601907/article/details/100988387 //导入证书 WebRequestHandler handler = new WebRequestHandler(); string certificateFileName = 此 阅读全文
posted @ 2021-06-01 14:54 China Soft 阅读(2344) 评论(0) 推荐(1)
摘要: c# 中HttpClient访问Https网站,加入如下代码: handler = new HttpClientHandler() ;handler.AllowAutoRedirect = true;handler.UseCookies = true;handler.CookieContainer 阅读全文
posted @ 2021-06-01 14:42 China Soft 阅读(1937) 评论(0) 推荐(0)
摘要: http://blog.sina.com.cn/s/blog_94a1fe540102ympb.html using System; using System.Collections.Generic; using System.IO; using System.Linq; using System. 阅读全文
posted @ 2021-06-01 14:29 China Soft 阅读(438) 评论(0) 推荐(0)
摘要: //根据操作系统处理启动方式 //How to run a .NET Core console app as a service using Systemd on Linux //https://swimburger.net/blog/dotnet/how-to-run-a-dotnet-core- 阅读全文
posted @ 2021-05-29 22:24 China Soft 阅读(355) 评论(0) 推荐(0)
上一页 1 ··· 108 109 110 111 112 113 114 115 116 ··· 129 下一页