摘要:
LINQ: select结尾,from开头(from->where->groupby->having->orderby->join->select) var tt = from aa in cd select aa.Count();//查询一个值就不用数组 连接数组,join in放在select前 阅读全文
摘要:
public class mo { public int q1 { get; set; } public int count { get; set; } } class Class1 { static void Main(string[] args) { int[] a = new int[] { 阅读全文
摘要:
传入的值为null static string[] Result2(string p1, string p2="2") { string[] s = new string[] { p1, p2 }; return s; } public string[] Result(string p1, stri 阅读全文
摘要:
下 MultiLine打勾; 代码: foreach(int a in nums) { textBox1.AppendText($"p1:{p1};p2:{p2};{a}"); textBox1.AppendText(System.Environment.NewLine);//下一行 } 阅读全文