-
自动化 绕胶机上位机程序
自动化 绕胶机上位机程序
- 2020-12-11下载
- 积分:1
-
C++ 读取文件内容
C 文件操作参考实例,方便学习文件操作,数据转换
- 2020-02-13下载
- 积分:1
-
c语言打飞机小游戏(含存档功能)
c语言打飞机小游戏(含存档功能)
- 2019-04-23下载
- 积分:1
-
【推荐】C# 代码混淆,防止反编译 解决方案(ConfuserEx)
http://www.cnblogs.com/zhangzhi19861216/p/3937434.html一 如果只是混淆exe文件则1. 将MyTest.exe文件拖到 confuserEx工具2. 点击Settings(1)选择Packer(下拉那里默认即可)(2)Modules->选中MyTest.exe (3) 选中Rules 点击 号,true3. 点击Protest!->Protect! ,提示导出成功二 如果只是混淆dll文件1.将dll拖入ConfuserEx后2.点击Settings(1)不能选择Packer了(因为dll不是packer)(2)Modules->选中MyLibrary.exe (3) 选中Rules 点击 号,true (4) 点击最右侧(下方)的铅笔头图标 (5)在弹出的窗口中 Preset 选择Maxinum,然后再点击下面 “ ”按钮,选择anti ildasm(我猜是防止通过IL编译)3. 点击Protest!->Protect! ,提示导出成功如果是所有程序集合都混淆,则排出开元项目即可特别声明:文本操作者工具,只需要混淆自定义的程序集,不混淆texttools.exe文件(因为混淆后程序集报错)
- 2019-03-28下载
- 积分:1
-
C# 计时器、倒计时 例子源码下载
C# 计时器、倒计时 例子源码下载
- 2015-06-10下载
- 积分:1
-
.NET Reflector 5.0 使用例子(反编译软件)
.NET Reflector 5.0 Release Notes 28 December 2006 Reflector is a class browser for .NET components. It allows browsing and searching the meta data, IL instructions, resources and XML documentation stored in a .NET assembly. Reflector was first released in October 2000 running on .NET Framework 1.0 Beta. LINQ and .NET Framework 3.5: Reflector supports query expressions and other concepts introduced in C# 3.5. To enable this feature select ".NET 3.5" under View, Options, Disassembler, Optimization. .NET Framework compatibility: Reflector runs on all versions of the .NET Framework using its own assembly loading infrastructure which does not rely on the Reflection API. For example, Reflector can load .NET Framework 2.0 assemblies without having the .NET Framework 2.0 installed. Assembly Lists: When launched for the first time, Reflector allows you to choose a default set of assemblies. The list of assemblies is then stored in the Reflector.cfg file and will be loaded next time you open the program. Reflector allows creating multiple assembly lists and switching between the lists using the File, Open List dialog. To choose a different set of default assemblies for the current assembly list you should remove all assemblies from the list (DEL) and invoke the Refresh command (F5). Assembly Cache: When resolving an assembly reference, Reflector will first search the local path next to the assembly holding the reference and then falls back to the cache directories defined in the Reflector.cfg file. Reflector does not search the Global Assembly Cache (GAC) unless you add "%SystemRoot%Assembly" to the cache directories list. Assembly Versioning: By default, assembly version numbers are ignored when resolving type and member references. You can enable side-by-side versioning in the options dialog but it is suggested to avoid this if possible. Add-Ins: Information about the Reflector add-in model can be found here. The most recent version of .NET Reflector is available here. Disclaimer: This software is provided "AS IS" with no warranties of any kind. The entire risk arising out of the use or performance of the software is with you.
- 2015-06-15下载
- 积分:1
-
C# 坦克大战、打地鼠等游戏 源码下载
坦克大战、打地鼠等游戏
- 2015-04-29下载
- 积分:1
-
VS开发S7-1200PLC上位机软件(案例源码)
【实例简介】
使用C#编程语言编写S7-1200PLC上位机软件,界面使用WPF做了美化,程序功能有曲线图,数据记录,数据查询,故障报警列表
- 2021-11-02 00:41:36下载
- 积分:1
-
C#实现图片中文识别成文本文字,已应用项目中
C#将图片里中文识别成文本文字,中文识别,.net 实现中文识别 支持*.bmp; *.jpg; *.gif; *.jpeg;*.png等图片格式上的中文,文字 识别 【核心代码】 public Form1() { InitializeComponent(); //ocr = new TesseractEngine("./tessdata", "eng", EngineMode.TesseractAndCube);//设置语言 英文 ocr = new TesseractEngine("./tessdata", "chi_sim");//设置语言 中文 // ocr = new TesseractEngine("./tessdata", "jpn");//设置语言 日语 } private void button1_Click(object sender, EventArgs e) { OpenFileDialog filename = new OpenFileDialog(); filename.Filter = "All files(*.*)|*.*|image files(*.bmp)|*.bmp; *.jpg; *.gif; *.jpeg;*.png"; filename.FilterIndex = 2; if (filename.ShowDialog() == DialogResult.OK) { Bitmap bit = new Bitmap(Image.FromFile(filename.FileName.ToString())); Page page = ocr.Process(bit); string str = page.GetText();//识别后的内容 page.Dispose(); pictureBox1.Image = bit; richTextBox1.AppendText(str); } } /// /// 图片颜色区分,剩下白色和黑色 /// /// ///
- 2020-04-24下载
- 积分:1
-
C# web QQ登陆示例
C# web QQ登陆示例
- 2014-04-21下载
- 积分:1