C#WinForm程序显示控制台窗口Console
启动一个WINFORM项目,使用一些API函数将控制台显示出来: AllocConsole 和 FreeConsole。老规矩,废话不多说,贴代码using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms;using …… 阅读全文
启动一个WINFORM项目,使用一些API函数将控制台显示出来: AllocConsole 和 FreeConsole。老规矩,废话不多说,贴代码using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms;using …… 阅读全文
文件哈希码比较,用于更新文件public static bool CompareFile(string str1, string str2) { string p_1 = str1; string p_2 = str2; //计算第一个文件的哈希值 var ha …… 阅读全文
与MFC类似,通过SendMessage和窗口句柄实现消息之间的传递当然,这东西可以在线程和进程间通讯,实现线程消息的互相传递,文件系统升级卸载等功能作用空间using System.Runtime.InteropServices; // 导入user32.dll用到主窗体public partial class Form1 : Form{ …… 阅读全文
sFile = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase + "Log\\" + sFile; sFolder = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase + "Log\\"; if (!Directory.Exists(sFolder)) …… 阅读全文
1. 类(class)可见性修饰符: public—在所有类中可见,在其他包中可以用import导入。缺省—就是没有修饰符,在同一个包中的类中可见,在其他包中不能用import导入。修饰符:final—终态类,表示该类不能被继承 abstract—抽象类,不能新建对象 2. 变量(variable)Java中变量有两种,方法变量和字段变量方法变量只能用一 …… 阅读全文