迁移以前的笔记。
static string Hello => @"Hello world , Lind!"; //static string Hello{get;}
static DateTime AddTime { get; set; } = DateTime.Now;
static Dictionary<string, string> dictionary1 = new Dictionary<string, string>
{
["name"] = "lind",
["age"] = "16"
};
static string t2 = $"时间从{DateTime.Now}到{DateTime.Now.AddDays(1)}";
static Test test = new Test();
static string title = test?.Name;//if(test!=null) title=test.Name;
static List
static Test defaultList = testList?[0];
public void ConsolePrint(string msg) => Console.WriteLine(msg);
原文:https://www.cnblogs.com/aoximin/p/13032973.html