03 2022 档案
摘要:input:<meta\s*charset="(?<value>.*?)" pattern:value Match match = Regex.Match(input, pattern); return match.Success ? match.Groups[key].Value : string
阅读全文
摘要:微软开发文档 https://docs.microsoft.com/zh-cn/dotnet/csharp/
阅读全文
摘要:Visual Studio配置: Visual Assist 西红柿,Shit+Alt+O 搜索文件 (工具.扩展与更新) Word Highlight With Margin 高亮显示 Visual Studio 2015 Color THeme Editor 主题编辑器(可选) 工具.选项.文本
阅读全文
摘要:参考资料 https://www.cnblogs.com/mark5/p/11613005.html 觉得拼多多的开放平台接口风格好用,就是用type表示名称, 拼多多开放平台:https://open.pinduoduo.com/application/home
阅读全文
摘要:Server端 using System.Runtime.Serialization; using System.ServiceModel; using System.ServiceModel.Web; namespace ApiServer { [ServiceContract(Name = "P
阅读全文
摘要:一、快速格式化快捷键 在visual studio2018中,快捷键是Ctrl + K, Ctrl + F, 这是一个组合键,即先按Ctrl + K, 这时候编辑器会等待下一个按键动作,此时再按Ctrl + F, 即可以格式化代码了,当然,也可以在选项里面设置成使用VC6的快捷键,就可以继续使用Al
阅读全文
摘要:参考资料 https://blog.csdn.net/rosejeck/article/details/82975513
阅读全文
摘要:字符型转换为字符串 // C 货币 2.5.ToString("C"); // ¥2.50 // D 10进制数 25.ToString("D5"); // 25000 // E 科学型 25000.ToString("E"); // 2.500000E+005 // F 固定点 25.ToStri
阅读全文