C#书写规范 一、命名 对于理解应用程序的逻辑流,命名方案是最有影响力的一种帮助。名称应该说明什么而不是如何。通过避免使用公开基础实现(它们会发生改变)的名称,可以保留...
用C#编写一个停放在任务栏上的图标程序 作者:蔡世友类别:C#/VB日期:2002-1-3010:21:46 01-12-6上午10:53:11 -------------------------------------------------------------------------------- 引言 C#语言是微软公司针...
1、什么是WMI WMI是英文WindowsManagementInstrumentation的简写,它的功能主要是:访问本地主机的一些信息和服务,可以管理远程计算机(当然你必须要拥有足够的权限),比如:重启,关机,...
usingSystem; usingSystem.DirectoryServices; usingSystem.Collections; usingSystem.Text.RegularExpressions; usingSystem.Text; /** *@author吴海燕 *@emailwuhy80-usual@yahoo.com *2004-6-25第一版 */ namespaceWuhy.ToolBox { ///summary ///这个...
privatestring[]GetMoc() { string[]str=newstring[3]; ManagementClassmcCpu=newManagementClass(win32_Processor); ManagementObjectCollectionmocCpu=mcCpu.GetInstances(); foreach(ManagementObjectminmocCpu) { str[0]=m[ProcessorId].ToString(); } Man...
可以用DSA和RSA,如: usingSystem; usingSystem.Text; usingSystem.Security.Cryptography; classdsacrypto_SignData{ publicstaticvoidMain(String[]args){ //先要将字符串转换为字节数组,这与编码有关。 Stringstr=thisisates...
usingMicrosoft.Win32; 1.读取指定名称的注册表的值 复制代码 代码如下: private string GetRegistData(string name) { string registData; RegistryKey hkml = Registry.LocalMachine; RegistryKey software = hkml.OpenSubKey(SOFTWARE,...
纯真版QQ IP数据库 复制代码 代码如下: using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Web; using System.Configuration; namespace BLL { public class IPLocationSearch { private sta...
privatevoidForm1_Resize(objectsender,System.EventArgse){ if(this.WindowState==FormWindowState.Minimized){ this.Visible=false; this.notifyIcon1.Visible=true; } } privatevoidnotifyIcon1_Click(objectsender,System.EventArgse){ this.Visible=true;...
usingSystem; usingSystem.Drawing; usingSystem.Collections; usingSystem.ComponentModel; usingSystem.Windows.Forms; usingSystem.Data; usingSystem.Net; usingSystem.Threading; namespaceWindowLanSearch { ///summary ///Form1的摘要说明。 ////...