FromToDates() public static method

public static FromToDates ( System.DateTime min, System.DateTime max ) : DateSpan
min System.DateTime
max System.DateTime
return DateSpan
Exemplo n.º 1
0
 public static DateSpan DateSpanTo(this DateTime min, DateTime max)
 {
     return(DateSpan.FromToDates(min, max));
 }