示例#1
0
 public REGConfig(Registry.BaseKey baseKey, String path, Boolean readOnly = true)
     : base(path, readOnly)
 {
     _registry = new Common_Library.Registry.Registry(path, baseKey, readOnly);
 }
示例#2
0
 public REGConfig(String pathName = null, Boolean readOnly = true)
     : base(String.IsNullOrEmpty(pathName) ? Assembly.GetCallingAssembly().GetName().Name : pathName, readOnly)
 {
     _registry = new Common_Library.Registry.Registry(ConfigPath, readOnly);
 }