Created
November 27, 2013 11:30
-
-
Save feanz/7674254 to your computer and use it in GitHub Desktop.
DaySuffix
This file contains 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
public static string DaySuffix(this DateTime dateTime) | |
{ | |
return (dateTime.Day == 1) | |
? "st" | |
: (dateTime.Day == 2) | |
? "nd" | |
: (dateTime.Day == 3) | |
? "rd" | |
: "th"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment