I may be the last one in the .Net world to find this one out!! Say you wanted to execute the following string format statement: return string .Format( " {0:MMMM} {0:d}-{1:d}, {0:yyy} " , start, end); The result of that format command would be: January 1/1/2007-1/7/2007, 2007. This is obviously...