摘要:
AtomicReference<Boolean> isSyncSuccess = new AtomicReference<>(false);CompletableFuture<Void> future = CompletableFuture.runAsync(() ->{ isSyncSuccess 阅读全文
摘要:
https://vip.kingdee.com/article/537953720802328576?productLineId=1&lang=zh-CN 阅读全文
摘要:
检测:Get-WindowsOptionalFeature -Online -FeatureName SMB1Protocol启用:Enable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol禁用:Disable-WindowsOpt 阅读全文
摘要:
打开PowerShell(以管理员身份运行)。 输入 irm massgrave.dev/get |iex 自动下载激活脚本 阅读全文
摘要:
/// <summary> /// 将一个类型对象数据赋值到另一个类型对象(名字相同的情况) /// </summary> /// <typeparam name="T">目标类型</typeparam> /// <param name="entity">目标类型对象</param> /// <pa 阅读全文
摘要:
public static int Update(string strJson){ int count = 0; List<Dictionary<string, object>> listRows = JsonConvert.DeserializeObject<List<Dictionary<str 阅读全文
摘要:
private void FormMain_Load(object sender, EventArgs e) { ShareDirec(); } public void ShareDirec() { ManagementClass management =new ManagementClass("W 阅读全文
摘要:
现象 FastReport 打印弹框,无法关闭 解决方法 阅读全文
摘要:
#region 屏幕保护 System.Timers.Timer timerRunScreenSaverTask = null; F_ScreenSaver f_ScreenSaver = null; private void RunScreenSaverTask() { if (timerRunS 阅读全文
摘要:
1、创建一个DNS服务:可以使用MulticastService类来创建一个DNS服务实例,并为其指定主机名和端口号。 var service = new MulticastService("mydns.local", IPAddress.Parse("224.0.0.251"), 5353); 2 阅读全文