-
Notifications
You must be signed in to change notification settings - Fork 27
Closed
Description
Hi, I am using package to formatting date time and I find the problem with date separator in different culture.
You can easy fixed it. You can add condition, which replace '/' with date separator, in method FormatLiteral in class Formatter.
For example:
else if (token.Length == 1 && token[0] == '/' && culture != null)
{
literal = DateTime.MaxValue.ToString("/d", culture)[0].ToString();
}
Metadata
Metadata
Assignees
Labels
No labels