123456789101112131415161718192021 |
- namespace GxPress.Common.WechatPay
- {
- public class WxPayConfig
- {
- private static volatile IConfig config;
- private static object syncRoot = new object();
- public static IConfig GetConfig()
- {
- if (config == null)
- {
- lock (syncRoot)
- {
- if (config == null)
- config = new DemoConfig();
- }
- }
- return config;
- }
- }
- }
|