摘要:
#Java ##code: public class Outer{ private int outerNum = 1; public int getOuterNum() { return outerNum; } public class Inner{ //错误,非静态内部类不能有静态成员 //sta 阅读全文
摘要:
public static async Task Main(string[] args) { new Child(); Console.ReadKey(); await Task.CompletedTask; } public static class Helper { public static 阅读全文
摘要:
1 using System; 2 using System.Collections.Concurrent; 3 using System.Collections.Generic; 4 using System.Linq; 5 using System.Threading; 6 using System.Threading.Tasks; 7 8 namespace Try 9 { 10 publi 阅读全文