Question: You are developing a fiscal report for a customer. Your customer has a main office in the United States and a satellite office in Mexico. You need to ensure that when users in the satellite office generate the report, the current date is displayed in Mexican Spanish format. Which code segment should you use?
DateTime.Today.Month, DateTime.Today.Day);
Strong dateString = dt.ToString();
B
C
DateTimeFormatInfo.CurrentInfo
GetMonthName(DateTime.Today.Month);
D
DateTime.Today.Month, DateTime.Today.Day);
string dateString = dt.ToString(dtfi.LongDatePattern);