UnityEditor.iOS.Xcode.PBX.XCBuildConfigurationData.RemovePropertyValue C# (CSharp) Méthode

RemovePropertyValue() public méthode

public RemovePropertyValue ( string name, string value ) : void
name string
value string
Résultat void
        public void RemovePropertyValue(string name, string value)
        {
            if (this.entries.ContainsKey(name))
            {
                this.entries[name].RemoveValue(EscapeWithQuotesIfNeeded(name, value));
            }
        }