G 
		
								
				
				
			
		George Ionescu
Hello all,
given the following piece of code:
DateTimeFormatInfo dfi = (new CultureInfo("Ro-ro")).DateTimeFormat;
DateTime now = DateTime.Now;
string strDate = now.ToString("dd-MMM-yyyy", dfi);
the strDate contains the string '21-iul.-2004'
What's with the dot after the month's name ? Am I doing something wrong here
?
Thank you.
Regards,
George Ionescu
				
			given the following piece of code:
DateTimeFormatInfo dfi = (new CultureInfo("Ro-ro")).DateTimeFormat;
DateTime now = DateTime.Now;
string strDate = now.ToString("dd-MMM-yyyy", dfi);
the strDate contains the string '21-iul.-2004'
What's with the dot after the month's name ? Am I doing something wrong here
?
Thank you.
Regards,
George Ionescu
	
  If you do not like this format you can change it using DateTimeFormatInfo.AbbreviatedMonthNames: