FromRegistryString() 공개 메소드

public FromRegistryString ( string str ) : void
str string
리턴 void
예제 #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);
        }
예제 #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;
 }