HTML5先行者高级交流群

欢迎加入学习讨论
专注前端,专注网页设计制作及网站开发项目 - (低价承接网站开发项目) QQ:370158739加入收藏RSS
-
2013-12-20 14:42:07
base64编码类------源代码(C#)_.NET教程_编程技术
- 编码|源代码 using System;namespace shapBse64{ /// <summary> /// 有关base64编码算法的相关操作 ///By 自由奔腾(wgscd) /// </summary> public class SBase64 { publi
-
2013-12-20 14:42:07
使用jmail组件发送电子邮件(C#)_.NET教程_编程技术
- jmail|jmail组件 首先,下载jmail组件,可以直接安装;也可以找到jmail.dll,手动注册组件。命令行环境下,到jmail.dll所在目录,运行regsvr32 jmail.dll,C#程序中,行首加上using jmail,如下:(点
-
2013-12-20 14:42:04
C#中与未操控语句交互运作_.NET教程_编程技术
- 交互|语句 using System;using System.Runtime.InteropServices;namespace FastCSharp{ class Class1 { [STAThread] unsafe static void Main(string[] args) {// comInv
-
2013-12-20 14:42:04
c# 获得局域网主机列表实例_.NET教程_编程技术
- using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Data;using System.Net;using System.Th
-
2013-12-20 14:42:03
用C#的类实现数据结构的堆栈算法_.NET教程_编程技术
- 数据|数据结构|算法 using System;namespace DataStructure{ /// <summary> /// Class1 的摘要说明。 /// </summary> public class Stack//栈类 { private int count=0;
-
2013-12-20 14:42:01
C#and VB.net_.NET教程_编程技术
- C#中的接口interface [public|protected|private] interface InterfaceName{ //mothed// propery// event//delegate}在实现接口时,带接口名与不带接口的区别 不带的区别eg: pub
-
2013-12-20 14:42:01
c#中P2P通讯的实现(1)_.NET教程_编程技术
- p2p 1.模式:Client/Server(就是我们通常说的 C/S模式) 2.网络连接流程: 3.用到的命名空间 System.NET,System.NET.Socket,System.System.Threading http://msdn.microsoft.co
-
2013-12-20 14:41:57
用C#实现生成PDF文档(原码)_.NET教程_编程技术
- 用C#实现生成PDF文档(原码) //write by wenhui.orgusing System;using System.IO;using System.Text;using System.Collections;namespace PDFGenerator{public class PDFGenerat
-
2013-12-20 14:41:55
C#实现web信息自动抓取_.NET教程_编程技术
- web C#实现web信息自动抓取 NetBug--爬虫 V1.02开发笔记背景 随着Internet的普及,网络信息正以极高的速度增长,在这么多数据中找到自己需要的信息是一件很繁琐的事情,找
-
2013-12-20 14:41:54
Visaul C#托盘程序制作心得_.NET教程_编程技术
- 程序|心得 首先,当然要引入NotifyIcon控件。private System.Windows.Forms.NotifyIcon notifyIconServer;this.notifyIconServer = new System.Windows.Forms.NotifyIcon(this.com
-
2013-12-20 14:41:51
轻松实现旋转显示文本_.NET教程_编程技术
- 显示|旋转 //本程序显示如何旋转显示文本,代码很简单,不过个人觉得做学习用还是不错的!//作者: i.Posei(ipqn)//欢迎访问 www.kunwsoft.comusing System;using System.Drawing;using
-
2013-12-20 14:41:51
C#如何获得cpu,硬盘的物理序列号_.NET教程_编程技术
- 硬盘 using System;using System.Runtime.InteropServices;using System.Management;namespace Hardware{ /// <summary> /// Hardware_Mac 的摘要说明。 /// </summary> public
-
2013-12-20 14:41:49
如何在C#中使用Win32和其他库_.NET教程_编程技术
- C# 用户经常提出两个问题:“我为什么要另外编写代码来使用内置于 Windows 中的功能?在框架中为什么没有相应的内容可以为我完成这一任务?”当框架小组构建他们的 .NET 部分时,他们评
-
2013-12-20 14:41:47
深入剖析C#的多态_.NET教程_编程技术
- 一、什么是多态 面向对象程序设计中的另外一个重要概念是多态性。在运行时,可以通过指向基类的指针,来调用实现派生类中的方法。可以把一组对象放到一个数组中,然后调用它们的方法,