摘要: 转发:原文作者Angus_LJH(CSDN) 原文地址:https://blog.csdn.net/qq_35351282/article/details/115490143 using System; using System.Collections.Generic; using System.L 阅读全文
posted @ 2022-09-22 15:33 Kacy 阅读(623) 评论(0) 推荐(0) 编辑
摘要: https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Status 阅读全文
posted @ 2020-05-26 11:32 Kacy 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 源:点阵字库的生产原理 阅读全文
posted @ 2020-03-18 09:21 Kacy 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 参考:https://docs.microsoft.com/zh-cn/dotnet/framework/windows-services/ #if DEBUG Service1 myserver = new Service1(); myserver.OnDebug(); //在Service1.c 阅读全文
posted @ 2019-09-27 17:54 Kacy 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 1..net core 网站后台部署 找到 bin 目录的上一层 打开cmd 输入命令 : dotnet publish -c release -r win7-x64( release版本) dotnet publish -c debug -r win7-x64 (debug版本) 2..net c 阅读全文
posted @ 2019-09-27 17:45 Kacy 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 一、准备条件: 1.谷歌地图开发者文档:https://developers.google.cn/maps/documentation/javascript/tutorial 2.申请一个API的Key。 二、如何实现(只提供JS代码): 1.先构造一张地图。 2.进行地址解析 3.根据地址解析获取 阅读全文
posted @ 2019-06-22 11:12 Kacy 阅读(1573) 评论(1) 推荐(1) 编辑
摘要: C# 遍历控件检查是否有被选中的项。这里提供一个思路,实现的方式有两种。这里以CheckBox为例。 思路:从容器控件中一层一层找到CheckBox控件,判断CheckBox是否被选中。 实现方式: 1.判断指定Table容器中的CheckBox是否被选中 2.通用的递归遍历方式 阅读全文
posted @ 2019-06-06 10:02 Kacy 阅读(1432) 评论(0) 推荐(0) 编辑
摘要: 1. string test = string.Empty; 2.判断字符串是否为空使用 string.IsNullOrEmpty; 3.异常处理,Try Catch尽量不在底层使用 4.sqlServer数据库语句使用大写 5.字符串连接时使用string.Concat()方法 6.希望无论因为什 阅读全文
posted @ 2019-06-05 15:15 Kacy 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 一。线程的定义。 阅读全文
posted @ 2019-04-08 15:00 Kacy 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 原地址:https://www.cnblogs.com/logon/p/3748020.html 对于SQL的Join,在学习起来可能是比较乱的。我们知道,SQL的Join语法有很多inner的,有outer的,有left的,有时候,对于Select出来的结果集是什么样子有点不是很清楚。Coding 阅读全文
posted @ 2019-04-03 11:19 Kacy 阅读(202) 评论(0) 推荐(0) 编辑