Which is the newest way to return empty IEnumerable?
return Enumerable.Empty<ReportFileResult>();
or
return Array.Empty<ReportFileResult>();
or
return [];
This is the return type
IEnumerable<ReportFileResult>
1
Which is the newest way to return empty IEnumerable?
return Enumerable.Empty<ReportFileResult>();
or
return Array.Empty<ReportFileResult>();
or
return [];
This is the return type
IEnumerable<ReportFileResult>
1