摘要: /// <summary> /// MD5函数 /// </summary> /// <param name="str">原始字符串</param> /// <returns>MD5结果</returns> public static string MD5(string str) { byte[] 阅读全文
posted @ 2019-07-09 08:11 z5337 阅读(351) 评论(0) 推荐(0) 编辑
 
摘要: 转自:http://billie66.github.io/TLCL/book/chap05.html Be Careful With rm ! 小心 rm ! Unix-like operating systems such as Linux do not have an undelete comm 阅读全文
posted @ 2018-11-30 09:47 z5337 阅读(720) 评论(0) 推荐(0) 编辑
 
摘要: 开机启动文件夹:C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup Windows Server 2012 R2 显示 这台电脑 图标方法: 来自:https://jingyan.b 阅读全文
posted @ 2017-05-02 14:35 z5337 阅读(250) 评论(12) 推荐(0) 编辑
 
摘要: 2016年6月23日11时22分09秒 6 新增 win10 禁用全半角切换:https://www.10qianwan.com/articledetail/84784.html -2. text-overflow:ellipsis 显示省略符号来代表被修剪的文本。 常用 css 本样式在:http 阅读全文
posted @ 2015-09-11 22:38 z5337 阅读(482) 评论(4) 推荐(0) 编辑
  2024年11月12日
摘要: 方法一: netsh winsock reset 以管理员身份运行 cmd 执行这个命令,然后重启电脑。 方法二: 按报错提示,访问 https://jb.gg/ide/critical-startup-errors 按文章,可以参考 https://youtrack.jetbrains.com/i 阅读全文
posted @ 2024-11-12 17:54 z5337 阅读(3) 评论(0) 推荐(0) 编辑
  2024年10月22日
摘要: 来源:Kimi.ai 在Java中,DelayQueue 是一个非常有用的工具,用于实现延迟任务。以下是一个使用示例,它展示了如何使用 DelayQueue: 基本使用示例: 首先,你需要创建一个实现了 Delayed 接口的类。这个类需要实现 getDelay 方法,该方法返回延迟时间,以及 co 阅读全文
posted @ 2024-10-22 14:42 z5337 阅读(9) 评论(0) 推荐(0) 编辑
  2024年10月19日
摘要: 在 WPF (Windows Presentation Foundation) 中,关闭模式(Shutdown Mode)决定了应用程序何时关闭。可以通过以下方式设置关闭模式: XAML 设置: 在 App.xaml 文件中,可以通过 ShutdownMode 属性来设置关闭模式。WPF 提供了三种 阅读全文
posted @ 2024-10-19 21:15 z5337 阅读(6) 评论(0) 推荐(0) 编辑
  2024年9月26日
摘要: 转自:https://www.cnblogs.com/ambon/articles/5594497.html Clustered Index Seek 最快 Index Seek Index Scan Clustered Index Scan Table Scan 最慢 阅读全文
posted @ 2024-09-26 10:48 z5337 阅读(3) 评论(0) 推荐(0) 编辑
  2024年9月19日
摘要: 转自:阿里的 通义灵码 接上篇:https://www.cnblogs.com/z5337/p/18181574 在 C# 中防止接口的并发访问(即确保同一时间内只有一个线程能够访问某个资源或方法),可以通过多种方式实现。这里列出一些常见的方法: 1. 使用 lock 语句 lock 是一种常用的同 阅读全文
posted @ 2024-09-19 14:07 z5337 阅读(70) 评论(0) 推荐(0) 编辑
  2024年9月12日
摘要: 转自:https://learn.microsoft.com/zh-cn/previous-versions/msdn10/dd366102(v=MSDN.10) WPF 窗口最大化时有个很不好的现象是:如果窗口的WindowStyle 被直接或间接地设置为None 后(比如很多情况下你会覆盖默认的 阅读全文
posted @ 2024-09-12 17:52 z5337 阅读(66) 评论(0) 推荐(0) 编辑
  2024年9月6日
摘要: 转自:https://velocity.apache.org/engine/devel/user-guide.html User Guide - Contents¶ User Guide - Contents About this Guide What is Velocity? What can V 阅读全文
posted @ 2024-09-06 19:03 z5337 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.jb51.net/javascript/297784ud9.htm jquery-1.12.4.min.js 下载 1.x、2.x、3.x 三大系列的区别 1,IE 的支持情况比较 (1)情况分析 1.x:支持 ie6、ie7、ie8 2.x、3.x:不支持 ie6、i 阅读全文
posted @ 2024-09-06 17:38 z5337 阅读(20) 评论(1) 推荐(0) 编辑
  2024年9月5日
摘要: 转自:http://www.dmskin.com 运行后播放按钮就会一直旋转,而暂停按钮不动。 <Window x:Class="WPF.Views.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentatio 阅读全文
posted @ 2024-09-05 14:11 z5337 阅读(10) 评论(0) 推荐(0) 编辑
  2024年9月3日
摘要: 参考:https://learn.microsoft.com/zh-cn/visualstudio/ide/how-to-specify-build-events-csharp?view=vs-2022 xcopy "$(ProjectDir)$(OutDir)$(AssemblyName).dll 阅读全文
posted @ 2024-09-03 10:53 z5337 阅读(5) 评论(0) 推荐(0) 编辑