摘要:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
摘要:
using System; using System.Windows.Forms; namespace 事件委托练习 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } //声明委托 publ 阅读全文
摘要:
服务器端 using System; using System.Collections; using System.Net.Sockets; //命名空间 using System.Net; using System.Text; namespace SocketServer { //思路:1.创建一个Socket // 2.绑定一个ip和端口 ... 阅读全文
摘要:
using System; namespace CalculatorApplication { class NumberManipulator { public void getValues(out int x, out int y) { //Console.WriteLine("请输入第一个值: "); ... 阅读全文