新思想

文章分类 -  Develop

1 2 下一页

C# 简单邮件 (smtp / pop3) 客户端 源代码
摘要:C# 简单邮件 (smtp / pop3) 客户端 源源程序下载执行程序下载 阅读全文

posted @ 2016-01-10 12:36 新思想 阅读(744) 评论(0) 推荐(0)

C# 简单邮件发送(smtp)客户端 源代码
摘要:C# 简单邮件发送(smtp)客户端 源代码// http://sourceforge.net/p/netimplicitssl/wiki/C%23%20-%20Send%20Email%20over%20SSL%20on%20465%20port/// https://www.emailarchi... 阅读全文

posted @ 2016-01-10 12:35 新思想 阅读(963) 评论(0) 推荐(0)

C# Http多线程下载 源代码
摘要:C# Http多线程下载 源代码 阅读全文

posted @ 2015-12-23 12:01 新思想 阅读(754) 评论(1) 推荐(0)

C# 简单Web浏览器GUI 源代码
摘要:C# 简单Web浏览器GUI 源代码//ChromeWebBrowser.net - Chrome//下载//https://sourceforge.net/projects/chromewebbrowse/files///http://blog.csdn.net/lllllllllluoyi/ar... 阅读全文

posted @ 2015-12-22 09:23 新思想 阅读(5064) 评论(3) 推荐(0)

C# 简单HTTP客户端 源代码
摘要:一、使用 Socket 类从 HTTP 服务器接收整个网页using System;using System.Text;using System.Net;using System.Net.Sockets;public class GetSocket{ private static Socket... 阅读全文

posted @ 2015-12-22 09:15 新思想 阅读(1360) 评论(0) 推荐(0)

C# FTP客户端GUI 源代码
摘要:using System;using System.Text;using System.Windows.Forms;using System.IO;using System.Net;namespace FtpSimpleClient{ public partial class Form1 : ... 阅读全文

posted @ 2015-12-22 09:14 新思想 阅读(1808) 评论(3) 推荐(0)

C# 简单FTP客户端 源代码
摘要:C# 简单FTP客户端 源代码using System;using System.IO;using System.Net;namespace FTPCmd{ static class Program { static void Main(string[] args) ... 阅读全文

posted @ 2015-12-21 00:26 新思想 阅读(1485) 评论(0) 推荐(0)

C# 带 文件传输 功能的多人聊天 源代码
摘要:C# 带 文件传输 功能的多人聊天 源代码 阅读全文

posted @ 2015-12-17 10:13 新思想 阅读(313) 评论(0) 推荐(0)

C# 异步文件传输 源代码
摘要:源程序下载执行程序下载 阅读全文

posted @ 2015-12-17 10:11 新思想 阅读(298) 评论(0) 推荐(0)

C# 简单文件传输 源代码
摘要:服务器端 (接收端)using System;using System.Text;using System.Windows.Forms;using System.Net;using System.Net.Sockets;using System.IO;namespace Server{ pub... 阅读全文

posted @ 2015-12-17 10:10 新思想 阅读(3416) 评论(3) 推荐(1)

C# 多人加密聊天GUI 源代码
摘要:C# 多人加密聊天GUI 源代码 阅读全文

posted @ 2015-12-17 10:09 新思想 阅读(301) 评论(0) 推荐(0)

C# 多人聊天GUI 源代码
摘要:未完成源程序下载执行程序下载 阅读全文

posted @ 2015-12-16 12:14 新思想 阅读(286) 评论(0) 推荐(0)

C# 同步/异步即时通信/聊天 源代码
摘要:一、同步聊天服务器端:using System;using System.Net;using System.Net.Sockets;using System.Text;public class SynchronousSocketServer{ // 接收到的客户端的消息. public ... 阅读全文

posted @ 2015-12-16 09:21 新思想 阅读(778) 评论(0) 推荐(0)

C# 简单聊天GUI 源代码
摘要:简单聊天GUI服务器端:using System;using System.Windows.Forms;using System.Net;using System.Net.Sockets;using System.IO;using System.Threading;namespace SimpleI... 阅读全文

posted @ 2015-12-15 22:28 新思想 阅读(1231) 评论(0) 推荐(1)

C# 双向即时通信/聊天 源代码
摘要:// http://ccckmit.wikidot.com/csharpchatboxusing System;using System.Net;using System.Net.Sockets;using System.IO;using System.Threading;namespace IMC... 阅读全文

posted @ 2015-12-13 16:51 新思想 阅读(1124) 评论(1) 推荐(0)

C# 网络通信的基本框架 源代码
摘要:一、基于Socket 的 TCP 通信服务器端using System;using System.Text;using System.Net;using System.Net.Sockets;namespace SimpleIMSocketTcpServer{ class Program ... 阅读全文

posted @ 2015-12-13 16:49 新思想 阅读(2067) 评论(0) 推荐(0)

C# 端口扫描 GUI 源代码
摘要:C# 端口扫描 GUI 源代码源程序下载执行程序下载 阅读全文

posted @ 2015-12-10 22:20 新思想 阅读(551) 评论(0) 推荐(0)

C# 端口扫描 源代码
摘要:C# 端口扫描 源代码一、基本扫描using System;using System.Net;using System.Net.Sockets;namespace SimplePortScan{ class SimplePortScan { static void Main... 阅读全文

posted @ 2015-12-10 22:02 新思想 阅读(2874) 评论(2) 推荐(0)

C# 网卡配置 源代码
摘要:C# 网卡配置 源代码// This program can run in Windows 7.// This program can't run in Windows Server 2012 R2, I don't know why ?using System;using System.Colle... 阅读全文

posted @ 2015-12-01 00:07 新思想 阅读(1137) 评论(0) 推荐(0)

C# 网络信息 源代码
摘要:C# 网络信息 源代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using Sy... 阅读全文

posted @ 2015-12-01 00:03 新思想 阅读(684) 评论(0) 推荐(0)

1 2 下一页

导航