Rezzo Blog

K-ON!

C# IComparable 和 IComparer

using System; using System.Collections.Generic; namespace HelloWorldApplication { class HelloWorld { static void Main(string[] args) { Student stu1 = new Student(8, "c"); Student stu2 = new Student(10, "a"); Student stu3 = new Student(24, "b"); List<Student> list = new List<Student>(); list.Add(stu3); list.Add(stu2); list.Add(stu1); foreach(Student stu in list) { Console.WriteLine($"name: {stu.name}; age: {stu.age}"); } Console.WriteLine(&

保姆级免费建博客教程①

Part One 免费制作自己的博客!手把手保姆级教学! 第二部分 点击跳转 第一步:申请一个GitHub账号 够宝宝吧,从申请账号开始 点击GitHub : 点击右上

保姆级免费建博客教程②

Part Two 免费制作自己的博客!手把手保姆级教学! 第一部分 点击跳转 前期准备工作做好以后,文件夹应该是这个状态 进入blog文件夹 右键,点击Git Bash He