上一页 1 ··· 104 105 106 107 108 109 110 111 112 ··· 125 下一页
摘要: 方法/步骤 1 打开 cmd,输入 sconfig,回车,会出现下面的界面: 2 看一看检查一下 5 后面的选项,也就是 Windows 更新设置(英文为:Windows Update Settings)后面的选项,如果不是手动(Manually),那么输入 5,然后回车,回车之后再输入 M,然后再 阅读全文
posted @ 2021-07-05 10:05 China Soft 阅读(916) 评论(0) 推荐(0)
摘要: 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 阅读(72) 评论(0) 推荐(0)
摘要: 声明:本文部分内容来自 《more effective c#》,特此声明 c# 里面的 yield return 没什么高大上的,就是一个一个的 return。但是我们不能小看这种用法,他能给编程带来很多性能上的提高以及用法上的方便(减少遍历次数,增加重用性)。 我们来看一个例子: 对于函数 pub 阅读全文
posted @ 2021-07-01 23:50 China Soft 阅读(84) 评论(0) 推荐(0)
摘要: 在网上直接下载别人编译好的Qt库,为自己使用省了不少事。但往往也会遇到些问题,其中Qt version is not properly installed,please run make installQt没有被正确安装,请运行make install这个问题是比较常见的一个。网上看了一个帖子,终于 阅读全文
posted @ 2021-06-30 00:30 China Soft 阅读(1421) 评论(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 阅读(698) 评论(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 阅读(48) 评论(0) 推荐(0)
摘要: https://zimjs.com/components/ 阅读全文
posted @ 2021-06-23 17:14 China Soft 阅读(47) 评论(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 阅读(2309) 评论(0) 推荐(1)
摘要: c# 中HttpClient访问Https网站,加入如下代码: handler = new HttpClientHandler() ;handler.AllowAutoRedirect = true;handler.UseCookies = true;handler.CookieContainer 阅读全文
posted @ 2021-06-01 14:42 China Soft 阅读(1914) 评论(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 阅读(413) 评论(0) 推荐(0)
上一页 1 ··· 104 105 106 107 108 109 110 111 112 ··· 125 下一页