摘要:
Base64 正向,逆向 点击查看代码 using System.Text; var basicAuthorization = Convert.ToBase64String(Encoding.UTF8.GetBytes("AAA:123456")); Console.WriteLine(basicA 阅读全文
摘要:
Visual Studio 2019 2022编辑器,在Windows电脑上,有时候从git仓库下载下来的代码打开UTF8文件的时候出现乱码,解决:设置-->文本编辑器-->设定:勾选 自动探测没有签名的UTF8编码 关于UTF8 BOM 请参考:https://en.wikipedia.org/w 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; public class Program { public static void Main() { var list = new List<Product>{ ne 阅读全文
摘要:
点击查看代码 using System; using System.Collections.Generic; using System.Linq; public class Program { public static void Main() { var strL = new List<strin 阅读全文
摘要:
传送门 using System; using System.Collections.Generic; using System.Linq; public class Program { public static void Main() { // 先看看double类型 通过Math.Round取 阅读全文
摘要:
点击查看代码 using System; using System.Collections.Generic; using System.Linq; public class Program { public static void Main() { var s = TimeSpan.FromHour 阅读全文
摘要:
点击查看代码 using System; using System.Collections.Generic; using System.Linq; public class Program { public static void Main() { var list = new List<Emp> 阅读全文
摘要:
#### 说明 CamelCase是许多编程语言中常见的一种命名风格。在Java中,方法和变量名通常以小写字母开头,所有后续单词以大写字母开头(例如:startThread)。类的名称遵循相同的模式,只是它们以大写字母开头(例如:BlueCar)。 编写一个程序,创建或拆分CamelCase变量、方 阅读全文
摘要:
报错端口xxxxx被占用,PID启动不了 管理员CMD输入: netsh http add iplisten ipaddress=:: 参考:https://programmingflow.com/2015/08/28/solved-iis-express-failed-to-register-ur 阅读全文
摘要:
1. Vlookup VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup]) =IFERROR(VLOOKUP(C6,$H$6:$H$120,1,FALSE),"New") 参数 说明 数据类型 lookup_value 要 阅读全文