摘要: 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) 编辑