We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DateTime.ToString
g
DateTime(2014, 7, 1, 16, 37, 0).ToString("r gg gggggggggggg") |> printfn "%A"
Should give "r A.D. A.D." but currently gives "r A.D"
"r A.D. A.D."
"r A.D"
The text was updated successfully, but these errors were encountered:
It seems to be common to all the format when we exceed the standard number of token in the format.
For example, this has a similar issue
DateTime(2014, 7, 1, 16, 37, 0).ToString("r HH H HHHH", CultureInfo.InvariantCulture) |> printfn "%A"
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Should give
"r A.D. A.D."
but currently gives"r A.D"
The text was updated successfully, but these errors were encountered: