一、 获取mysql yum源 打开地址:https://dev.mysql.com/downloads/repo/yum/,选择对应的linux系统版本 点击“No thanks, just start my download.”,进行下载,将下载地址复制,得到rpm包的地址 二、下载和mysql Read More
枚举命名规则: 1、 枚举以复数的形式命名 => 例如性别 public enum Genders { } 2、状态 以Status结尾 枚举的扩展方法:还有其他博文 using System; using System.ComponentModel; using System.Reflection Read More
/// <summary> /// 基于 .Net 5 /// </summary> namespace CSharp9._0 { public class FooInfo { public int FooId { get; init; } public string FooName { get; Read More
using System; namespace CSharp8._0 { public interface ICustom { public void Show(); public void ShowInfo() { Console.WriteLine("showinfo"); } } public Read More
using System; namespace CSharp7._0 { class OutClass { public static void OutTest1(out string param) { param = "参数"; } } class BaseInfo { public BaseIn Read More