10 2020 档案

摘要:using System; using System.Collections.Generic; using Newtonsoft.Json; namespace study_dictionary { class Program { static void Main(string[] args) { 阅读全文
posted @ 2020-10-28 09:57 gygtech 阅读(581) 评论(0) 推荐(0)
摘要:RESTful: 学习地址:https://www.runoob.com/w3cnote/restful-architecture.html log4net: net core swagger: 阅读全文
posted @ 2020-10-23 11:22 gygtech 阅读(174) 评论(0) 推荐(0)
摘要:select version(); ################################### 算术运算符 ################################### -- + #加法 #字符串拼接要是用concat -- - #减法 -- * #乘法 -- / 或 DIV 阅读全文
posted @ 2020-10-15 16:49 gygtech 阅读(120) 评论(0) 推荐(0)
摘要:C#字符串长度判断 string aaa = "你好123"; Label1.Text = aaa.Length.ToString(); //结果5 Label2.Text = System.Text.Encoding.Default.GetBytes(aaa).Length.ToString(); 阅读全文
posted @ 2020-10-13 16:45 gygtech 阅读(91) 评论(0) 推荐(0)
摘要:select version(); -- 8.0.18 ##################################MySQL 字符串函数################################## -- 返回字符串 s 的字符数 select CHAR_LENGTH('abcdef 阅读全文
posted @ 2020-10-10 17:43 gygtech 阅读(133) 评论(0) 推荐(0)