Example #1
0
        /// <summary>
        /// Removes a string from the string table.
        /// </summary>
        public static bool RemoveAt(int index)
        {
            SampleCsStringTable string_table = SampleCsStringTable.Instance;
            bool rc = string_table.RemoveAt(index);

            if (rc)
            {
                // Invoke event
                if (null != OnRemoveAt)
                {
                    OnRemoveAt.Invoke(index);
                }
            }
            return(rc);
        }