Fork me on GitHub
tinylit
摘要: Linq语法(一)。 实体一: public class SimpleDto { public int Id { get; set; } public int Code { get; set; } public DateTime Date { get; set; } } 实体二: public cl 阅读全文
posted @ 2021-09-30 11:46 影子和树 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 单例模式:进程唯一。 非线程安全。 public sealed class SingletonV1 { private static SingletonV1 instance = null; private SingletonV1() { } public static SingletonV1 In 阅读全文
posted @ 2021-09-30 10:57 影子和树 阅读(183) 评论(0) 推荐(0) 编辑