AGS.Editor.DataFileWriter.CompileCustomProperties C# (CSharp) Метод

CompileCustomProperties() приватный статический Метод

private static CompileCustomProperties ( AGS.Types.CustomProperties convertFrom, CompiledCustomProperties compileInto ) : void
convertFrom AGS.Types.CustomProperties
compileInto CompiledCustomProperties
Результат void
        private static void CompileCustomProperties(CustomProperties convertFrom, CompiledCustomProperties compileInto)
        {
            compileInto.Reset();
            foreach (string key in convertFrom.PropertyValues.Keys)
            {
                compileInto.AddProperty(convertFrom.PropertyValues[key].Name, convertFrom.PropertyValues[key].Value);
            }
        }