12 2019 档案

动态创建 Hello World
摘要:var myHelloWorldApp = AssemblyDefinition.CreateAssembly( new AssemblyNameDefinition("HelloWorld", new Version(1, 0, 0, 0)), "HelloWorld", ModuleKind.Console); var module = myHelloWorldApp.MainModule; 阅读全文

posted @ 2019-12-31 13:19 空明流光 阅读(338) 评论(0) 推荐(0) 编辑

C# Hook 方法
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Reflection; using System.Runtime.CompilerServices; namespace MethodHookSample { class Program { stati 阅读全文

posted @ 2019-12-23 16:31 空明流光 阅读(2373) 评论(0) 推荐(0) 编辑

c++获取当前进程所在位置
摘要:WCHAR buffer[MAX_PATH]; GetModuleFileName(NULL, buffer, MAX_PATH ); wstring::size_type pos = wstring(buffer).find_last_of(TEXT("\\/")); WCHAR currentP 阅读全文

posted @ 2019-12-20 10:44 空明流光 阅读(927) 评论(0) 推荐(0) 编辑

c++ 读取 utf-8 文件到 string
摘要:#include <iostream> #include <assert.h> #include <fstream> #include <string> #include <string.h> using namespace std; #ifdef _WIN32 #include <Windows.h> #endif typedef enum FileType { FileType_ANSI = 阅读全文

posted @ 2019-12-18 11:45 空明流光 阅读(5693) 评论(0) 推荐(0) 编辑

javascript 访问 webservice
摘要:xml: javascript: 带参数的访问: 阅读全文

posted @ 2019-12-10 18:17 空明流光 阅读(319) 评论(0) 推荐(0) 编辑

eclipse code recommenders cannot download its model repository index
摘要:Cent OS 7 运行 eclipse oxygen 代码提示出现标题所示的错误,解决办法,将网络提供程序设置为手动即可解决。 Window->Preference->General->Network Connection->Active Provider 选择 Manual, 保存即可。 阅读全文

posted @ 2019-12-03 11:03 空明流光 阅读(1297) 评论(0) 推荐(0) 编辑

导航