BIGSING

Results 61 comments of BIGSING

补充一下:想要一个类似`DataTable`的功能,DataTable目前相对于您的CsvHelper来说读取的速度太慢了。 如下的方式读取速度也很慢,不如`csv.GetRecords()`这种方法速度快。 ```cs while (csv.Read()) { int columnIndex = 0; DataRow row = dt.NewRow(); foreach (DataColumn column in dt.Columns) { row[columnIndex] = csv.GetField(column.DataType, columnIndex); columnIndex++; } dt.Rows.Add(row); } ```

> ## Description > Describe the issue that you're seeing. > > ### Steps to reproduce > Clear steps describing how to reproduce the issue. Please please please link to...

I found an interesting thing: if the title in an article is a first level title, there will be no hierarchical structure, but if the title starts from a second...

另外,这个字样可以去掉,显示出来很奇怪啊: On this page ![Image](https://github.com/user-attachments/assets/ba88b60f-28e2-4528-accd-955337a30975)

I will wait for your implementation

@x-nas 没有防护机制,可以测试: 1. 从这里下载安装:https://www.ra2ol.com/ 2. 运行后创建房间或加入别人房间,进入测试游戏。 3. 运行WPE64,选择进程:gamemd-spawn.exe 你可以测试看看。

@x-nas 查看了代码: ``` if (ProcessID > -1) { RemoteHooking.Inject(ProcessID, injectionLibrary_x86, injectionLibrary_x64, Properties.Settings.Default.DefaultLanguage); } else { RemoteHooking.CreateAndInject(ProcessPath, string.Empty, 0, injectionLibrary_x86, injectionLibrary_x64, out this.ProcessID, Properties.Settings.Default.DefaultLanguage); } ``` 看上去是远程线程方式注入,这种方式很不可靠,容易:被防御机制拦截而导致失败。 建议使用消息钩子注入,或者两种方式配合使用,消息钩子不适用时再用远程线程方式。 另外劫持的方式也可以考虑,可以作为备选。

使用 SetWindowsHookEx WH_MOUSE 可以使用gpt或kimi 让他实现一段c#的代码就行

同需要订单管理