built-in method

Szökőév
Szökőév a(z) PowerShell kurzusban
function Test-Leap([int] $year) {
    [DateTime]::IsLeapYear($year)
}

Utilizing the DateTime class from .NET, you can determine if a year is a leap year or not by passing it into the IsLeapYear static method. This might not be the intended approach for learning, but it is an idiomatic way to check if a year is leap or not.

IsLeapYear method.

23. Sep 2026 · Hasznosnak találtad?