当你的才华不能撑起你的野心时,就是你该选择学习的时候了!

12 2021 档案

摘要:[TestMethod] public void Test() { _config = new AppSettingOptions() { ResDir = "D:\\VR2\\" }; var resDir = _config.ResDir; if (Directory.Exists(resDir 阅读全文
posted @ 2021-12-30 17:46 hofmann 阅读(242) 评论(0) 推荐(0)
摘要:public bool IsContainsAll(List<long> listA, List<long> listB) { return listB.All(b => listA.Any(a => a.Equals(b))); } 阅读全文
posted @ 2021-12-30 16:15 hofmann 阅读(106) 评论(0) 推荐(0)
摘要:string[] typeStringArrayInRecord = { }; var typeArrayInRecord = new List<int>(); if (typeStringArrayInRecord.Length > 0) typeArrayInRecord = Array.Con 阅读全文
posted @ 2021-12-30 13:25 hofmann 阅读(284) 评论(0) 推荐(0)
摘要:正则表达式中的元字符 编号字符描述 1 . 匹配除换行符以外的所有字符 2 \w 匹配字母、数字、下画线 3 \s 匹配空白符(空格) 4 \d 匹配数字 5 \b 匹配表达式的开始或结束 6 ^ 匹配表达式的开始 7 $ 匹配表达式的结束 正则表达式中表示重复的字符 编 号 字 符 描 述 1 * 阅读全文
posted @ 2021-12-29 17:42 hofmann 阅读(86) 评论(0) 推荐(0)
摘要:表达式体方法 阅读全文
posted @ 2021-12-27 14:10 hofmann 阅读(50) 评论(0) 推荐(0)
摘要:using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System.Collections.Generic; namespace BLL.Utilities { public class JsonHelper { public static 阅读全文
posted @ 2021-12-21 11:10 hofmann 阅读(136) 评论(0) 推荐(0)
摘要:var rowHtml = "<div class=\"container\"><div class=\"title dottedline\">查询结果</div></div><div class=\"container\"><table class=\"gridtable\"><tr><th>序号 阅读全文
posted @ 2021-12-13 15:42 hofmann 阅读(352) 评论(0) 推荐(0)