public class Students { //创建对像时使用 public Students(string name, int age, char gender, int englist, int chinese, int math) { this.Name = name; this.Age = age; this.Gender = gender; this.Englist = englist; this.Chinese = chinese; this.Math = Math; } pub…
using System; using System.Net; using System.Net.Sockets; using System.Text; using System.Threading; namespace socket2016 { class Program { static void Main(string[] args) { //服务器端 Socket sktltn = new Socket(AddressFamily.InterNetwork, SocketType.Str…