摘要: 泛型 using System; namespace ClassAndIn { internal class Program { static void Main(string[] args) { Book book = new Book() { Name="love and peace"}; Bo 阅读全文
posted @ 2025-06-13 19:56 市丸银 阅读(7) 评论(0) 推荐(0)
摘要: 接口默认 public abstract using System; namespace ClassAndIn { internal class Program { static void Main(string[] args) { // 多态 ICar car = new MiCar(); car 阅读全文
posted @ 2025-06-13 14:48 市丸银 阅读(5) 评论(0) 推荐(0)
摘要: 抽象类和重写 using Mysqlx.Notice; using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using Syste 阅读全文
posted @ 2025-06-13 14:37 市丸银 阅读(6) 评论(0) 推荐(0)
摘要: class V { public virtual void Run() { Console.WriteLine("V Run"); } } class Car:V { public override void Run() { Console.WriteLine("Car Run"); } } 阅读全文
posted @ 2025-06-13 13:53 市丸银 阅读(6) 评论(0) 推荐(0)
摘要: 一、委托 1、Action new Action(方法); 委派:无返回值 2、FunC 委派:有返回值 new Func<参数类型和返回值类型>(方法); using Mysqlx.Notice; using System; using System.Collections.Generic; us 阅读全文
posted @ 2025-06-13 09:52 市丸银 阅读(8) 评论(0) 推荐(0)
摘要: 一、输出参数(out) string a = "10"; int.TryParse(a, out int c) 二、数组参数(params) (params int[] intArray) 阅读全文
posted @ 2025-06-13 09:03 市丸银 阅读(16) 评论(0) 推荐(0)
摘要: 1、特点:传参会改变原值 2、格式:(ref int x, ref int y) static void Main(string[] args) { int a = 10; int b = 20; Add(ref a, ref b); Console.WriteLine("A:{0}", a); C 阅读全文
posted @ 2025-06-13 08:40 市丸银 阅读(5) 评论(0) 推荐(0)