UnityEditor.PListConfig.this C# (CSharp) Method

this() public method

public this ( string paramName ) : string
paramName string
return string
        public string this[string paramName]
        {
            get
            {
                Match match = GetRegex(paramName).Match(this.xml);
                return (!match.Success ? string.Empty : match.Groups["Value"].Value);
            }
            set
            {
                if (GetRegex(paramName).Match(this.xml).Success)
                {
                    this.xml = GetRegex(paramName).Replace(this.xml, "${Part1}" + value + "</string>");
                }
                else
                {
                    this.WriteNewValue(paramName, value);
                }
            }
        }
    }