摘要: 当传给类中的参数不确定有无时,则要给父类加个无参构造方法 阅读全文
posted @ 2023-05-08 17:53 阿霖找BUG 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 泛型:一种程序特性,在定义时无需指定特定的类型,而在使用时则要 集合优点:集合不用规定空间大小,而数组则用。 集合与数组相互转换: Course course4 = new Course(3,"huang",23); Course course5 = new Course(4,"huang",24) 阅读全文
posted @ 2023-05-06 18:03 阿霖找BUG 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 无参数 /// <summary> /// //无参数,无返回值 /// </summary> public void getWay() { string text = $"我是霖,今年23岁。"; Console.WriteLine(text); } /// <summary> /// 无参数 / 阅读全文
posted @ 2023-05-06 14:46 阿霖找BUG 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 这两个关键字是一对的 static表示静态 public static void mothed1() { string text = "234.567891230"; //Console.WriteLine(int.Parse(text));//必须是对应的类型 Console.WriteLine( 阅读全文
posted @ 2023-05-06 13:59 阿霖找BUG 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 构造体的名字与类要一样 不同的构造器参数的类型,顺序,数量不同。 internal class Class1 { public int id;//定义属性 public string name; public int age; public string text; public string Te 阅读全文
posted @ 2023-05-06 11:47 阿霖找BUG 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 类1 try { //可能出现问题代码(判断) conn.Open(); int cound = cmd.ExecuteNonQuery(); return cound; } catch (Exception ex)//继承Exception类,自定义错误 {//错误信息 string msg=$" 阅读全文
posted @ 2023-05-06 10:24 阿霖找BUG 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 循环: int[] number=new int[] {1,2,3,4,5}; foreach(int i in number)//把数组的值遍历出来赋值给i { numbers += i; } 把字符串根据“,”分割成数组 string num = "1,2,3,4,5,6" ; string[] 阅读全文
posted @ 2023-05-05 17:39 阿霖找BUG 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 第一步先在配置文件中写入数据库的配置信息 <add name="connString" connectionString="server=服务器名;database=数据库名;uid=登录名;pwd=登录密码"/> <connectionStrings> <add name="connString" 阅读全文
posted @ 2023-05-05 16:33 阿霖找BUG 阅读(76) 评论(0) 推荐(0) 编辑
摘要: const double PAI= 3.14;//常量 PAI = 3; 枚举: internal class Program { static void Main(string[] args) { Gender gender =Gender.Male; Console.WriteLine(gend 阅读全文
posted @ 2023-05-05 14:00 阿霖找BUG 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 可以在子句里加入TOP;比如top 100 percent,获取前100% -- 请查询出销售开始时间最早的产品,如果有多个,则按升序排序,选择第一个 select top 1 od.Name from (select top 100 percent p.Name from SalesLT.Prod 阅读全文
posted @ 2023-04-28 14:11 阿霖找BUG 阅读(304) 评论(0) 推荐(0) 编辑