System.Waf.Applications.RecentFileList.RemoveRange C# (CSharp) Method

RemoveRange() private method

private RemoveRange ( int index, int count ) : void
index int
count int
return void
        private void RemoveRange(int index, int count)
        {
            for (int i = 0; i < count; i++)
            {
                RemoveAt(index);
            }
        }