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

RecentFileList() public method

Initializes a new instance of the RecentFileList class.
public RecentFileList ( ) : System.Collections.Generic
return System.Collections.Generic
        public RecentFileList()
        {
            recentFiles = new ObservableCollection<RecentFile>();
            readOnlyRecentFiles = new ReadOnlyObservableCollection<RecentFile>(recentFiles);
        }