织梦CMS - 轻松建站从此开始!

我的网站

汇编语言 软件工程 C/C++语言编程 机器人编程 算法 C#编程 vb .net教程 Java教程 VBnet 移动开发 c#教程
当前位置: 主页 > 编程开发 >
  • C#教程之C#书写规范 日期:2017-06-17 13:28:25 点击:138 好评:0

    C#书写规范 一、命名 对于理解应用程序的逻辑流,命名方案是最有影响力的一种帮助。名称应该说明什么而不是如何。通过避免使用公开基础实现(它们会发生改变)的名称,可以保留...

  • C#教程之用 C# 编写一个停放在任务栏上的图标程 日期:2017-06-17 13:27:47 点击:191 好评:0

    用C#编写一个停放在任务栏上的图标程序 作者:蔡世友类别:C#/VB日期:2002-1-3010:21:46 01-12-6上午10:53:11 -------------------------------------------------------------------------------- 引言 C#语言是微软公司针...

  • C#教程之c#与WMI使用技巧集 日期:2017-06-17 13:26:23 点击:144 好评:0

    1、什么是WMI WMI是英文WindowsManagementInstrumentation的简写,它的功能主要是:访问本地主机的一些信息和服务,可以管理远程计算机(当然你必须要拥有足够的权限),比如:重启,关机,...

  • C#教程之用C#操纵IIS(代码) 日期:2017-06-17 13:25:50 点击:128 好评:0

    usingSystem; usingSystem.DirectoryServices; usingSystem.Collections; usingSystem.Text.RegularExpressions; usingSystem.Text; /** *@author吴海燕 *@emailwuhy80-usual@yahoo.com *2004-6-25第一版 */ namespaceWuhy.ToolBox { ///summary ///这个...

  • C#教程之用C#获取硬盘序列号,CPU序列号,网卡MAC地 日期:2017-06-17 13:25:26 点击:149 好评:0

    privatestring[]GetMoc() { string[]str=newstring[3]; ManagementClassmcCpu=newManagementClass(win32_Processor); ManagementObjectCollectionmocCpu=mcCpu.GetInstances(); foreach(ManagementObjectminmocCpu) { str[0]=m[ProcessorId].ToString(); } Man...

  • C#教程之C#中字符串的加密的源码 日期:2017-06-17 13:25:02 点击:174 好评:0

    可以用DSA和RSA,如: usingSystem; usingSystem.Text; usingSystem.Security.Cryptography; classdsacrypto_SignData{ publicstaticvoidMain(String[]args){ //先要将字符串转换为字节数组,这与编码有关。 Stringstr=thisisates...

  • C#教程之C#操作注册表的方法 日期:2017-06-17 13:24:20 点击:173 好评:0

    usingMicrosoft.Win32; 1.读取指定名称的注册表的值 复制代码 代码如下: private string GetRegistData(string name) { string registData; RegistryKey hkml = Registry.LocalMachine; RegistryKey software = hkml.OpenSubKey(SOFTWARE,...

  • C#教程之C#读取QQ纯真IP数据库QQWry.Dat的代码 日期:2017-06-17 13:23:43 点击:72 好评:0

    纯真版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...

  • C#教程之C#怎样才能实现窗体最小化到托盘呢? 日期:2017-06-17 13:23:10 点击:166 好评:0

    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;...

  • C#教程之c# 获得局域网主机列表实例 日期:2017-06-17 13:22:18 点击:170 好评:0

    usingSystem; usingSystem.Drawing; usingSystem.Collections; usingSystem.ComponentModel; usingSystem.Windows.Forms; usingSystem.Data; usingSystem.Net; usingSystem.Threading; namespaceWindowLanSearch { ///summary ///Form1的摘要说明。 ////...

推荐内容