02 2019 档案

c# 中 利用 CookieContainer 对 Cookie 进行序列化和反序列化校验
摘要:private void Form1_Load(object sender, EventArgs e) { var cookieStr = @".CNBlogsCookie=1BE76122E154E07DE50B06784B57B7DB80CC4B6DD088F0799C7C8BF7E2700B1C4FCF7A5BEAFDF80C1C49583EAB16... 阅读全文

posted @ 2019-02-28 11:33 空明流光 阅读(776) 评论(0) 推荐(0) 编辑

在经过身份验证的服务中不支持跨域 javascript 回调
摘要:在 asp.net web forms 站点中做了一个 wcf restful service 接口,开启了webforms 身份认证。 当 webforms 站点用户登录之后,访问 restful 接口会报如标题所述的错误。 解决方案如下: 方法1:关闭 webforms 身份认证。但大多数情况不 阅读全文

posted @ 2019-02-27 16:17 空明流光 阅读(295) 评论(0) 推荐(0) 编辑

c# 使用 namedpipe 通信
摘要:using System; using System.IO; using System.IO.Pipes; using System.Diagnostics; using System.Threading.Tasks; using System.Linq; using System.Threading; class PipeServer { static void Main() ... 阅读全文

posted @ 2019-02-21 11:31 空明流光 阅读(506) 评论(0) 推荐(0) 编辑

c++ 创建线程以及参数传递
摘要://创建线程,传递参数 DWORD dwThreadID = 0; HANDLE hThread = CreateThread(NULL, 0, MonitorThreadFunction, this , 0, &dwThreadID); //线程过程定义及参数接收 DWORD WINAPI MonitorThreadFunction(LPVOID lpParam) { CValid... 阅读全文

posted @ 2019-02-19 09:24 空明流光 阅读(834) 评论(0) 推荐(0) 编辑

c#函数地址传入c++
摘要:c# c++ 传入: 阅读全文

posted @ 2019-02-19 09:15 空明流光 阅读(768) 评论(0) 推荐(0) 编辑

c++中函数指针作为int传递
摘要:int f() { return 0; } typedef int (*method)(); int _tmain(int argc, _TCHAR* argv[]) { int value = (int)&f; std::cout >a; return 0; } 阅读全文

posted @ 2019-02-18 17:05 空明流光 阅读(486) 评论(0) 推荐(0) 编辑

visual studio 2017 中默认无法开发 Android 8.0 及以上系统的解决方案
摘要:一般默认比较旧有两个原因,系统版本过旧,Visual Studio 版本过旧。 第一步,将windows 更新到最新版,必须是windows 10 并且更新到最新。 第二步,将visual studio -> 工具 -> 扩展和更新 ,安装完所有更新。这个时候应该已经可以开发 android 9.0 阅读全文

posted @ 2019-02-13 14:04 空明流光 阅读(323) 评论(0) 推荐(0) 编辑

导航