摘要: 如何高效的学习掌握新技术 https://www.cnblogs.com/dotey/p/4812633.html 10年总结,得到与失去 https://www.cnblogs.com/hjf1223/p/10years.html 软件构架师的特点 杂文 什么是书?什么是看书? https://w 阅读全文
posted @ 2019-01-24 18:37 JeffreyGoogle 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 官网 https://cesium.com/ https://cesiumjs.org/Cesium/ 论坛 http://cesium.coinidea.com/ 中文网 http://cesium.xin/ 博客园相关文章 https://www.cnblogs.com/mazhenyu/p/6 阅读全文
posted @ 2019-01-24 12:12 JeffreyGoogle 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 快速上手 js和C#互相调用。 C#调用js比较容易。JS调用C#代码,现有两种方法。老方法的缺点是只支持单页,如果切换页面,原有创建的变量就失效了。新方法没有这些问题。 老方法: Cefsharp js调用c#与c#调用js CefSharp 与 js 相互调用 新方法 https://githu 阅读全文
posted @ 2019-01-24 12:07 JeffreyGoogle 阅读(2121) 评论(0) 推荐(0) 编辑
摘要: 判断线程是否是主线程 System.Threading.Thread.CurrentThread.ApartmentState STA 为主线程 MTA 阅读全文
posted @ 2019-01-22 18:45 JeffreyGoogle 阅读(114) 评论(0) 推荐(0) 编辑
摘要: Win10开启FTP与配置(完整无错版) Win10系统下如何搭建FTP服务器 阅读全文
posted @ 2019-01-21 19:21 JeffreyGoogle 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 数据库(外键及其约束理解) (https://www.cnblogs.com/chenxiaohei/p/6909318.html) Mysql 远程登录及常用命令 阅读全文
posted @ 2019-01-21 15:29 JeffreyGoogle 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 方法1:继承IExceptionLogger 参考 HTTP Message Handlers in ASP.NET Web API ASP.NET Web API 处理架构 阅读全文
posted @ 2019-01-03 14:43 JeffreyGoogle 阅读(261) 评论(0) 推荐(0) 编辑
摘要: CHAR(36) 如果某列设置为CHAR(36),则MySQL官方的连接器会将其当成 GUID 类型。实际上,有时候 某个字段碰巧设为可CHAR(36), 但是我们的本意并非当它是GUID。 varchar(64) 解决方法是:将这个字段修改为 VARCHAR(36) 或者 CHAR(40),总之, 阅读全文
posted @ 2019-01-03 14:34 JeffreyGoogle 阅读(1256) 评论(0) 推荐(0) 编辑
摘要: Process proc = Process.GetCurrentProcess(); //string info = "内存:" + (Environment.WorkingSet / (1024.0 * 1024.0)).ToString("f2")+"M "; string info = "内存:"... 阅读全文
posted @ 2018-12-25 15:56 JeffreyGoogle 阅读(196) 评论(0) 推荐(0) 编辑
摘要: c#字典怎么获取第一个键值 字典按value排序 List排序 List 排序 参考: 阅读全文
posted @ 2018-12-20 12:36 JeffreyGoogle 阅读(3011) 评论(0) 推荐(0) 编辑