Пример #1
0
        public UtilsRegistryEntry this[string name]
        {
            get
            {
                UtilsRegistryEntry entry = null;
                if (name == "")
                    entry = new UtilsRegistryEntry(_parent, name, UtilsRegistryEntryType.Default);
                else
                    entry = new UtilsRegistryEntry(_parent, name);

                return entry;
            }
        }
Пример #2
0
        public UtilsRegistryEntry this[string name]
        {
            get
            {
                UtilsRegistryEntry entry = null;
                if (name == "")
                {
                    entry = new UtilsRegistryEntry(_parent, name, UtilsRegistryEntryType.Default);
                }
                else
                {
                    entry = new UtilsRegistryEntry(_parent, name);
                }

                return(entry);
            }
        }