ToFourDigitYear() 공개 메소드

public ToFourDigitYear ( int year ) : int
year int
리턴 int
예제 #1
0
 // Convert a two-digit year value into a four-digit year value.
 public override int ToFourDigitYear(int year)
 {
     return(hijri.ToFourDigitYear(year));
 }