We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi When you set the month value for the calendar, it starts from 0. In my opinion, if it starts from 1, it will help more...
Exp:
fun main() { val calendarPrimary = CalendarFactory.newInstance(CalendarType.CIVIL) calendarPrimary.set(year = 2023, month = 8, dayOfMonth = 17)
val millis = calendarPrimary.timeInMillis println(millis) val calendarSecondary = CalendarFactory.newInstance(type = CalendarType.CIVIL) calendarSecondary.timeInMillis = millis println(calendarSecondary.shortDateString)
}
Out :
1694933393081 2023/09/17 (23, 9, 17)
Finally, thanks for PrimeCalendar ❤
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi
When you set the month value for the calendar, it starts from 0.
In my opinion, if it starts from 1, it will help more...
Exp:
fun main() {
val calendarPrimary = CalendarFactory.newInstance(CalendarType.CIVIL)
calendarPrimary.set(year = 2023, month = 8, dayOfMonth = 17)
}
Out :
1694933393081
2023/09/17
(23, 9, 17)
Finally, thanks for PrimeCalendar ❤
The text was updated successfully, but these errors were encountered: