Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save M-Yankov/1cdd70ca008fc03379d81a2a67df7809 to your computer and use it in GitHub Desktop.
Save M-Yankov/1cdd70ca008fc03379d81a2a67df7809 to your computer and use it in GitHub Desktop.
@(System.Threading.Thread.CurrentThread.CurrentCulture.Name) -< Culture
@(System.Threading.Thread.CurrentThread.CurrentCulture.DateTimeFormat) -< Format
@{
var dateInfo = System.Threading.Thread.CurrentThread.CurrentCulture.DateTimeFormat;
var formats = dateInfo.GetAllDateTimePatterns();
}
@foreach (var item in dateInfo.GetAllDateTimePatterns())
{
<div>@item</div>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment