SerializedStringTable.Remove C# (CSharp) Method

Remove() public method

public Remove ( string key ) : void
key string
return void
    public void Remove(string key)
    {
        this.SanityCheck();
        if (this.table.Contains(key))
        {
            this.table.Remove(key);
        }
        this.SynchArrays();
    }