摘要:
泛型:一种程序特性,在定义时无需指定特定的类型,而在使用时则要 集合优点:集合不用规定空间大小,而数组则用。 集合与数组相互转换: Course course4 = new Course(3,"huang",23); Course course5 = new Course(4,"huang",24) 阅读全文
摘要:
无参数 /// <summary> /// //无参数,无返回值 /// </summary> public void getWay() { string text = $"我是霖,今年23岁。"; Console.WriteLine(text); } /// <summary> /// 无参数 / 阅读全文
摘要:
这两个关键字是一对的 static表示静态 public static void mothed1() { string text = "234.567891230"; //Console.WriteLine(int.Parse(text));//必须是对应的类型 Console.WriteLine( 阅读全文
摘要:
构造体的名字与类要一样 不同的构造器参数的类型,顺序,数量不同。 internal class Class1 { public int id;//定义属性 public string name; public int age; public string text; public string Te 阅读全文
摘要:
类1 try { //可能出现问题代码(判断) conn.Open(); int cound = cmd.ExecuteNonQuery(); return cound; } catch (Exception ex)//继承Exception类,自定义错误 {//错误信息 string msg=$" 阅读全文