DateRange.IsCurrentQuater C# (CSharp) Méthode

IsCurrentQuater() public méthode

public IsCurrentQuater ( DateTime date ) : bool
date DateTime
Résultat bool
            public bool IsCurrentQuater(DateTime date)
            {
                return date >= From && date <= To;
            }