Esempio n. 1
0
        public void RemoveASoundFile()
        {
            m_outputFiles.RemoveAt(index);

            //make sure we aren't going outside the bounds of the list
            int numberOfFiles = m_outputFiles.Count;

            if (index >= numberOfFiles)
            {
                index = numberOfFiles - 1;
            }

            if (index < 0)
            {
                index = 0;
            }
        }