Orc.NuGetExplorer.NuGetSettings.SetValues C# (CSharp) 메소드

SetValues() 공개 메소드

public SetValues ( string section, IList values ) : void
section string
values IList
리턴 void
        public void SetValues(string section, IList<SettingValue> values)
        {
            foreach (var value in values)
            {
                SetValue(section, value.Key, value.Value);
            }
        }

Same methods

NuGetSettings::SetValues ( string section, string>.IList values ) : void