FromRegistryString() public méthode

public FromRegistryString ( string str ) : void
str string
Résultat void
Exemple #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);
        }
 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;
 }