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

Insert() private method

private Insert ( int index, RecentFile recentFile ) : void
index int
recentFile RecentFile
return void
        private void Insert(int index, RecentFile recentFile)
        {
            recentFile.PropertyChanged += RecentFilePropertyChanged;
            recentFiles.Insert(index, recentFile);
        }