上一页 1 2 3 4 5 6 7 ··· 52 下一页
摘要: filter: blur(3px); 阅读全文
posted @ 2021-04-27 14:43 enych 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 有的时候,需要知道近段时间SQLSERVER执行了什么语句,可以用下面的方法: SELECT TOP 1000 QS.creation_time, SUBSTRING(ST.text, (QS.statement_start_offset / 2) + 1, ((CASE QS.statement_ 阅读全文
posted @ 2021-04-23 10:36 enych 阅读(347) 评论(0) 推荐(0) 编辑
摘要: var regex = new Regex(@" (?=.*[0-9]) #必须包含数字 (?=.*[a-zA-Z]) #必须包含小写或大写字母 (?=([\x21-\x7e]+)[^a-zA-Z0-9]) #必须包含特殊符号 .{8,30} #至少8个字符,最多30个字符 ", RegexOpti 阅读全文
posted @ 2021-04-12 14:54 enych 阅读(1485) 评论(0) 推荐(0) 编辑
摘要: var animals = new[] { new { Name="Dog",Age=3,Type1="Home" }, new { Name="Cat",Age=1,Type1="Home" }, new { Name="Wolf",Age=2,Type1="Wild" }, new { Name 阅读全文
posted @ 2021-03-13 11:09 enych 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 字符 → ASCII 码:StringValue.charCodeAt() ASCII 码 → 字符:String.fromCharCode(asciiValue) 转自:https://www.jianshu.com/p/24966e1205f9 阅读全文
posted @ 2021-02-20 09:17 enych 阅读(351) 评论(0) 推荐(0) 编辑
摘要: var d0 = Math.Round((0.4), MidpointRounding.AwayFromZero); //0 var d1 = Math.Round((0.45), MidpointRounding.AwayFromZero); // 0 var d2 = Math.Round((0 阅读全文
posted @ 2021-02-09 09:41 enych 阅读(230) 评论(0) 推荐(0) 编辑
摘要: --清除存储过程缓存 DBCC FREEPROCCACHE --清除会话缓存 DBCC FREESESSIONCACHE --清除系统缓存 DBCC FREESYSTEMCACHE('All') --清除所有缓存 DBCC DROPCLEANBUFFERS GO 转自: https://blog.c 阅读全文
posted @ 2021-02-05 13:44 enych 阅读(666) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-02-04 14:14 enych 阅读(133) 评论(0) 推荐(0) 编辑
摘要: static void Main() { Random r = new Random(); DataTable dt = new DataTable(); dt.Columns.Add("Id", typeof(string)); for (int i = 0; i < 10; i++) { Dat 阅读全文
posted @ 2021-02-01 10:11 enych 阅读(75) 评论(0) 推荐(0) 编辑
摘要: ....... AppData\Local\Microsoft\VisualStudio\ ......... ApplicationPrivateSettings.xml 文件中 <collection name="CodeContainers.Offline"> <value name="val 阅读全文
posted @ 2021-01-30 09:27 enych 阅读(1421) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 52 下一页