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

Remove() public method

public Remove ( string key ) : void
key string
return void
        public void Remove(string key)
        {
            this.values.Remove(key);
        }

Usage Example

Example #1
0
 protected void SetPropertyString(string name, string value)
 {
     if (value == null)
     {
         m_Properties.Remove(name);
     }
     else
     {
         m_Properties.SetString(name, value);
     }
 }
All Usage Examples Of UnityEditor.iOS.Xcode.PBX.PBXElementDict::Remove