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

RemoveAt() private method

private RemoveAt ( int index ) : void
index int
return void
        private void RemoveAt(int index)
        {
            recentFiles[index].PropertyChanged -= RecentFilePropertyChanged;
            recentFiles.RemoveAt(index);
        }