FromRegistryString() public method

public FromRegistryString ( string str ) : void
str string
return void
Exemplo n.º 1
0
        public static List <AttributeEntry> Load()
        {
            string[] values = Settings.Store.ChangePasswordAttributes;
            List <AttributeEntry> result = new List <AttributeEntry>();

            foreach (string entry in values)
            {
                AttributeEntry pae = new AttributeEntry();
                pae.FromRegistryString(entry);
                result.Add(pae);
            }
            return(result);
        }
Exemplo n.º 2
0
 public static List<AttributeEntry> Load()
 {
     string[] values = Settings.Store.ChangePasswordAttributes;
     List<AttributeEntry> result = new List<AttributeEntry>();
     foreach (string entry in values)
     {
         AttributeEntry pae = new AttributeEntry();
         pae.FromRegistryString(entry);
         result.Add(pae);
     }
     return result;
 }