12 2021 档案

摘要:/// <summary> /// 时间戳转本地时间-时间戳精确到秒 /// </summary> public static DateTime ToLocalTimeDateBySeconds(long unix) { var dto = DateTimeOffset.FromUnixTimeSe 阅读全文
posted @ 2021-12-20 14:21 .NET____小白 阅读(2263) 评论(0) 推荐(0)
摘要:static void Main(string[] args) { Person ps = new Person(); ps.Name = "CTZ"; ps.Age = 21; Console.WriteLine(ps.GetValue("Name")); Console.WriteLine(ps 阅读全文
posted @ 2021-12-13 17:15 .NET____小白 阅读(145) 评论(0) 推荐(0)