摘要:
Press the Windows key, and then in the Start page, located at the bottom-left, click the Power button, and then select Shut Down. Click Continue. In t 阅读全文
摘要:
原来正则表达式也会出现死循环,比如 我有两个方法 Method1, Main 。在 Method1 中写了一段正则表达式,这个表达式有出现死循环的可能。在 Main方法中调用了 Method1, 这个时候会出现程序一直无法退出的情况。解决的方式就是在 Main方法中,调用 Method1之前,设置一 阅读全文
摘要:
he following code example shows how you might attempt to update the UI from your task logic. // The Wrong Way to Update a UI Objectpublic void btnGetT 阅读全文
摘要:
using Newtonsoft.Json; JsonSerializer serialiser = new JsonSerializer(); string newContent = string.Empty; using (StreamReader reader = new StreamReader(file.FullName)) ... 阅读全文
摘要:
安装SSL证书, 以及使用openssl对证书进行格式转换。 阅读全文
摘要:
字符数组反转, how are you, 反转后为you are how. 阅读全文
摘要:
在Linux系统下,不同机器上实现文件拷贝 一、将本地文件拷贝到远程机器: scp /home/administrator/news.txt root@192.168.6.129:/etc/squid 其中: /home/administrator/ 本地文件的绝对路径 news.txt 要复制到服 阅读全文
摘要:
上一篇文章我们实现了整数与时间格式的互转,常见的字幕文件的格式有WebVTT, SRT, TTML, 有的系统要求我们提供VTT格式, 有的系统只支持TTML格式,我们字幕做完一个拿到的可能是SRT格式, 所以设计到将不同格式的字幕文件进行转换。 阅读全文