Result Model
Lets create a struct
in our Models
namespace and name it ResultModel.cs
See: Struct vs Class
Fields
Now we will create four properties See: Variables vs Properties
Name
Type
Description
Count
int
The number of results
NumberOfFiles
int
The total number of files processed
Duration
TimeSpan
The time it took to compile results
Items
FileModel[]
The file extensions processed
See: Primitive Types
Example:
ToString
Add ToString() Method
Last updated
Was this helpful?