LogViewer.RecentFile.RecentFile C# (CSharp) Method

RecentFile() public method

public RecentFile ( int number, string filepath ) : System
number int
filepath string
return System
        public RecentFile(int number, string filepath)
        {
            this.Number = number;
            this.Filepath = filepath;
        }
RecentFile