I have this code:
DateTime dtAnyDateHebrew = new DateTime(5767, 1, 1, new System.Globalization.HebrewCalendar());
how can I get the numeric Hebrew date of today?
Meaning:
For example I want to find out if a specific Hebrew month falls in this month, so I have to send the hebrew month to the function - with today's day of month and year, so that I'll be able to check if dtAnyDateHebrew is equal to Today, bigger than. etc.
finally I need to get - Today's hebrew day of month, Today's hebrew month, Today's hebrew year, as int (of course).
Can someone help me?