Created
May 7, 2016 22:37
-
-
Save M-Yankov/1cdd70ca008fc03379d81a2a67df7809 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@(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