上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: LINQ: select结尾,from开头(from->where->groupby->having->orderby->join->select) var tt = from aa in cd select aa.Count();//查询一个值就不用数组 连接数组,join in放在select前 阅读全文
posted @ 2023-07-15 18:29 阿霖找BUG 阅读(20) 评论(0) 推荐(0) 编辑
摘要: public class mo { public int q1 { get; set; } public int count { get; set; } } class Class1 { static void Main(string[] args) { int[] a = new int[] { 阅读全文
posted @ 2023-07-15 17:10 阿霖找BUG 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 传入的值为null static string[] Result2(string p1, string p2="2") { string[] s = new string[] { p1, p2 }; return s; } public string[] Result(string p1, stri 阅读全文
posted @ 2023-07-15 14:45 阿霖找BUG 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 下 MultiLine打勾; 代码: foreach(int a in nums) { textBox1.AppendText($"p1:{p1};p2:{p2};{a}"); textBox1.AppendText(System.Environment.NewLine);//下一行 } 阅读全文
posted @ 2023-07-15 10:19 阿霖找BUG 阅读(48) 评论(0) 推荐(0) 编辑
摘要: public void nums() { ArrayList list = new ArrayList(); Random r = new Random(); list.Add(r.Next(20)); while (true) { if (list.Count == 20) break; int 阅读全文
posted @ 2023-07-13 18:13 阿霖找BUG 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 子类继承父类,重写父类,在子类中调用父类被覆盖的方法。 public class Person { public virtual void GetInfo()//要标明是什么函数;virtual虚函数 { Console.WriteLine("qqqqqqqe"); } } class Employ 阅读全文
posted @ 2023-07-13 14:48 阿霖找BUG 阅读(18) 评论(0) 推荐(0) 编辑
摘要: Action无返回值 Action<string> greet = name =>//无返回值所以Action<输入类型> { string greeting = $"Hello {name}!"; Console.WriteLine(greeting); }; greet("World");//调 阅读全文
posted @ 2023-07-13 11:00 阿霖找BUG 阅读(6) 评论(0) 推荐(0) 编辑
摘要: private static void sum(int[] nums) { Random rnd = new Random(); for(int i=nums.Length-1; i>=0; i--) { int a= rnd.Next(i + 1); //Console.WriteLine(a); 阅读全文
posted @ 2023-07-04 23:44 阿霖找BUG 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 委托是对某个方法的引用的引用变量,引用在运行时可以被改变。 委托用于事件,和回调函数 继承于delegate类 事件是委托的实例,是一种特殊的委托。事件比委托安全。 委托先声明后实例化(new) 阅读全文
posted @ 2023-07-03 19:20 阿霖找BUG 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 托管代码:生成的exe可执行文件中间语言代码直接托管给CLR进行负责(C#) 非托管代码:生成的exe可执行文件代码操作系统可以直接加载内存中运行(C,C++) CLR(公共语言运行时):JIT(实时编译器),GC(垃圾回收机制),内存管理,异常处理,跨语言调试 中间语言:CIL MSIL 阅读全文
posted @ 2023-06-30 16:56 阿霖找BUG 阅读(10) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页