Пример #1
0
        /// <summary>
        /// Inserts the element of a collection into the LuaCodeFile
        /// at the specified index.
        /// </summary>
        /// <param name="start">Index of inserting.</param>
        /// <param name="lines">Code lines.</param>
        public void InsertRange(int start, IList <string> lines)
        {
            if (lines == null)
            {
                throw new ArgumentNullException("lines");
            }

            luaCodeFile.InsertRange(start, lines);
        }