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

SetProperty() public method

public SetProperty ( string name, string value ) : void
name string
value string
return void
        public void SetProperty(string name, string value)
        {
            this.entries[name] = BuildConfigEntryData.FromNameValue(name, EscapeWithQuotesIfNeeded(name, value));
        }