Skip to content

Instantly share code, notes, and snippets.

@Sam-Gram
Created March 27, 2020 21:32
Show Gist options
  • Save Sam-Gram/8b571441d4d738bfba9dd2e50dc63404 to your computer and use it in GitHub Desktop.
Save Sam-Gram/8b571441d4d738bfba9dd2e50dc63404 to your computer and use it in GitHub Desktop.
int GetWeekNumberOfMonth(DateTime date)
{
date = date.Date;
DateTime firstMonthDay = new DateTime(date.Year, date.Month, 1);
return (date - firstMonthDay).Days / 7 + 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment