摘要:
如题,代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp2 { c 阅读全文
摘要:
偷懒,c#代码: class Program { static char[] c = new char[6]; static int l; static void Main(string[] args) { string s; s = Console.ReadLine(); l = s.Length 阅读全文
摘要:
VS CODE版本:1.46 由于VS CODE是使用“Language Support for Java(TM) by Red Hatredhat.java预览版”进行格式化的,所以需要在这个插件里设置格式。 在“(用户名)\.vscode\extensions\redhat.java-0.62. 阅读全文
摘要:
跟tcpclient类似。 不同之处:1、udp没有稳定通道,所有内容需要用字节形式收发。2、udpclient的connect方法,仅指定默认的发送目的地,并没有连接动作。 最简的代码如下: 被连接端: using System; using System.Collections.Generic; 阅读全文
摘要:
代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { clas 阅读全文