How to get specific day date list of the month Using Method Syntax

:memo:How to get specific day date list of the month Using Method Syntax :question:

Code:
intYear(int) = 2023
intMonth(int) = 1

Enumerable.Range(1,DateTime.DaysInMonth(intYear,intMonth)).
Select(function(d) new DateTime(intYear,intMonth,d)).
Where(function(x) x.DayOfWeek=DayOfWeek.Saturday).ToList()

Output:
List(4)
{
[01/07/2023 00:00:00],
[01/14/2023 00:00:00],
[01/21/2023 00:00:00],
[01/28/2023 00:00:00]
}

Thanks,
RajKumar Durai