SerializedStringTable.SanityCheck C# (CSharp) Method

SanityCheck() private method

private SanityCheck ( ) : void
return void
    private void SanityCheck()
    {
        if (this.keys == null)
        {
            this.keys = new string[0];
            this.values = new int[0];
        }
        if (this.table == null)
        {
            this.table = new Hashtable();
            for (int i = 0; i < this.keys.Length; i++)
            {
                this.table[this.keys[i]] = this.values[i];
            }
        }
    }