System.Waf.Applications.RecentFileList.RecentFileList C# (CSharp) Метод

RecentFileList() публичный Метод

Initializes a new instance of the RecentFileList class.
public RecentFileList ( ) : System.Collections.Generic
Результат System.Collections.Generic
        public RecentFileList()
        {
            recentFiles = new ObservableCollection<RecentFile>();
            readOnlyRecentFiles = new ReadOnlyObservableCollection<RecentFile>(recentFiles);
        }