Howto format a date as localized Short MonthDay string
- by Wouter
I would like to format a DateTime to a string containing the month name abbreviated and the date for use in axislabels in a graph.
The default DateTime format strings do not contain abbreviated month. I guess there is no standard but I could take a substring of the first 3 characters of the month name and replace this into the MonthDay format. The…