摘要:
使用FileSystemWatcher 初始化传递要监听的目录, 在过滤中过滤文件(可以使用通配符) public class FileListenerServer { private FileSystemWatcher _watcher; public FileListenerServer(str 阅读全文
摘要:
查找对应删除的时间点 select * from v$sql where sql_text like '%test_table%'; 使用时间来回复指定的表数据 insert into test_table select * from test_table as of timestamp to_ti 阅读全文
摘要:
需要按照对应的nuget包: System.Management 获取cpu信息 ManagementClass mc = new ManagementClass("Win32_Processor"); ManagementObjectCollection moc = mc.GetInstances 阅读全文
摘要:
1. 创建对应通信的Hub类 using Microsoft.AspNetCore.SignalR; using System.Threading.Tasks; namespace SignalRChat.Hubs { public class ChatHub : Hub { public asyn 阅读全文