10 2020 档案
摘要:using System; using System.Collections.Generic; using Newtonsoft.Json; namespace study_dictionary { class Program { static void Main(string[] args) {
阅读全文
摘要:RESTful: 学习地址:https://www.runoob.com/w3cnote/restful-architecture.html log4net: net core swagger:
阅读全文
摘要:select version(); ################################### 算术运算符 ################################### -- + #加法 #字符串拼接要是用concat -- - #减法 -- * #乘法 -- / 或 DIV
阅读全文
摘要:C#字符串长度判断 string aaa = "你好123"; Label1.Text = aaa.Length.ToString(); //结果5 Label2.Text = System.Text.Encoding.Default.GetBytes(aaa).Length.ToString();
阅读全文
摘要:select version(); -- 8.0.18 ##################################MySQL 字符串函数################################## -- 返回字符串 s 的字符数 select CHAR_LENGTH('abcdef
阅读全文