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

RemoveProperty() public method

public RemoveProperty ( string name ) : void
name string
return void
        public void RemoveProperty(string name)
        {
            if (this.entries.ContainsKey(name))
            {
                this.entries.Remove(name);
            }
        }