UnityEditor.iOS.Xcode.PBX.PBXElementDict.this C# (CSharp) Method

this() public method

public this ( string key ) : PBXElement
key string
return PBXElement
        public PBXElement this[string key]
        {
            get
            {
                if (this.values.ContainsKey(key))
                {
                    return this.values[key];
                }
                return null;
            }
            set
            {
                this.values[key] = value;
            }
        }