AEMManager.Util.RegistryMigration.MigrateIntValues C# (CSharp) 메소드

MigrateIntValues() 개인적인 정적인 메소드

private static MigrateIntValues ( RegistryKey source, RegistryKey target ) : void
source Microsoft.Win32.RegistryKey
target Microsoft.Win32.RegistryKey
리턴 void
        private static void MigrateIntValues(RegistryKey source, RegistryKey target, params string[] propertyNames)
        {
            for (int i = 0; i < propertyNames.Length; i++) {
            target.SetValue(propertyNames[i], (int)source.GetValue(propertyNames[i], 0));
              }
        }