摘要:
抽象工厂模式// 抽象产品 public interface IProduct { void Operation(); } // 具体产品A public class ProductA : IProduct { public void Operation() { Console.WriteLine( 阅读全文
摘要:
// “0”描述:占位符,如果可能,填充位 Console.WriteLine(string.Format("{0:000000}", 1234)); // 结果:001234 // “#”描述:占位符,如果可能,填充位 Console.WriteLine(string.Format("{0:### 阅读全文