What is the use of CultureInfo.InvariantCulture.Calendar.GetDayOfWeek?

817 views Asked by At

I was checking out the week numbering codes and I have encountered with this answer on SO. I did not get the use of CultureInfo.InvariantCulture.Calendar.GetDayOfWeek. Is there any reason for not using DayOfWeek property of DateTime as time.DayOfWeek. Am I missing something?

Related code block from the answer mentioned above:

DayOfWeek day = CultureInfo.InvariantCulture.Calendar.GetDayOfWeek(time);
0

There are 0 answers