You are developing a fiscal report for a customer.

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?


A. DateTimeFormatInfo dtfi = new CultureInfo(“es-MX”, false).DateTimeFormat;
    DateTime dt = new DateTime(DateTime.Today.Year, DateTime.Today.Month,
    DateTime.Today.Day); string dateString = dt.ToString(dtfi.LongDatePattern);

B. Calendar cal = new CultureInfo(“es-MX”, false).Calendar; DateTime dt = new     
    DateTime(DateTime.Today.Year, DateTime.Today.Month, DateTime.Today.Day);
    Strong DateString = dt.ToString();

C. string dateString = DateTimeFormatInfo.CurrentInfo
    GetMonthName(DateTime.Today.Month);

D. string dateString = DateTime.Today.Month.ToString(“es-MX”);


Answer: A

No comments:

Post a Comment