WxPayConfig.cs 491 B

123456789101112131415161718192021
  1. namespace GxPress.Common.WechatPay
  2. {
  3. public class WxPayConfig
  4. {
  5. private static volatile IConfig config;
  6. private static object syncRoot = new object();
  7. public static IConfig GetConfig()
  8. {
  9. if (config == null)
  10. {
  11. lock (syncRoot)
  12. {
  13. if (config == null)
  14. config = new DemoConfig();
  15. }
  16. }
  17. return config;
  18. }
  19. }
  20. }