06 2019 档案

c++ 加载资源文件
摘要:int _tmain(int argc, _TCHAR* argv[]) { HRSRC hRsrc = FindResource(NULL, MAKEINTRESOURCE(IDR_DATA1), L"DATA"); DWORD dwSize = SizeofResource(NULL, hRsrc); HGLOBAL hGlobal = LoadResource(NU... 阅读全文

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

c++中byte数组与字符串的转化
摘要:c++中通常用 unsigned char 代表字节,所以有 typedef unsigned char byte; 我们不讨论与字符集有关的内容,只讨论在字节流传递过程中的问题。 我们在做一系统操作时会需要使用到数据流,比如接收网络数据,文件数据,图片数据,原始数据大多是以byte数组的形式提供, 阅读全文

posted @ 2019-06-25 15:04 空明流光 阅读(44009) 评论(0) 推荐(2) 编辑

c# AES128 加解密算法
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Diagnostics; using System.IO; using System.Security 阅读全文

posted @ 2019-06-24 16:51 空明流光 阅读(1620) 评论(0) 推荐(0) 编辑

C# DES 加解密
摘要:using System; using System.Text; using System.Security.Cryptography; using System.Diagnostics; using System.IO; using System.Reflection; using System.Windows.Forms; namespace FirstEliteCSFileEncoder... 阅读全文

posted @ 2019-06-24 15:57 空明流光 阅读(270) 评论(0) 推荐(0) 编辑

Could not load type 'System.Runtime.CompilerServices.ExtensionAttribute' from assembly 'mscorlib 的一种情形
摘要:没有引用任何.net 4.5的东西,也没有引用 Newtonsoft.dll,原因是引用了微软的tlb类型库,引用方法如 https://www.cnblogs.com/nanfei/p/10879800.html 解决办法:删除掉这个引用就好了,如果确实用到了其中的东西,那再找其它方案吧 阅读全文

posted @ 2019-06-14 09:57 空明流光 阅读(1506) 评论(0) 推荐(0) 编辑

导航