Fork me on GitHub
摘要: 抽象工厂模式// 抽象产品 public interface IProduct { void Operation(); } // 具体产品A public class ProductA : IProduct { public void Operation() { Console.WriteLine( 阅读全文
posted @ 2023-12-28 11:54 WantRemake 阅读(63) 评论(0) 推荐(0) 编辑
摘要: // “0”描述:占位符,如果可能,填充位 Console.WriteLine(string.Format("{0:000000}", 1234)); // 结果:001234 // “#”描述:占位符,如果可能,填充位 Console.WriteLine(string.Format("{0:### 阅读全文
posted @ 2023-12-28 10:20 WantRemake 阅读(778) 评论(0) 推荐(0) 编辑