上传者: 15122069
|
上传时间: 2021-12-16 20:38:09
|
文件大小: 104KB
|
文件类型: -
基于TCP的文件传输C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace 自己写的同步TCP的服务器
{
static class Program
{
///
/// 应用程序的主入口点。
///
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}