UnityEditor.iOS.Xcode.PBX.XCBuildConfigurationData.RemovePropertyValue C# (CSharp) Method

RemovePropertyValue() public method

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