Esempio n. 1
0
        public RegSzRawDictionary(string regPath, bool create = false)
        {
            var retVal = RegistryPath.Split(regPath);

            _hive    = retVal.Item1;
            _regPath = retVal.Item2;
            Open(create);
        }
Esempio n. 2
0
 public RegSzDictionary(string regPath, bool create = false)
 {
     dict   = new Dictionary <string, string>();
     regKey = RegistryPath.Open(regPath, create);
     Load();
 }