AddMonths() 공개 메소드

public AddMonths ( DateTime time, int months ) : DateTime
time DateTime
months int
리턴 DateTime
예제 #1
0
 // Add a time period to a DateTime value.
 public override DateTime AddMonths(DateTime time, int months)
 {
     return(hijri.AddMonths(time, months));
 }