System.Globalization.DateTimeFormatInfo
namespace System.Globalization
{
public sealed class DateTimeFormatInfo : ICloneable, IFormatProvider
{
public string[] AbbreviatedDayNames { get; set; }
public string[] AbbreviatedMonthGenitiveNames { get; set; }
public string[] AbbreviatedMonthNames { get; set; }
public string AMDesignator { get; set; }
public Calendar Calendar { get; set; }
public CalendarWeekRule CalendarWeekRule { get; set; }
public static DateTimeFormatInfo CurrentInfo { get; }
public string DateSeparator { get; set; }
public string[] DayNames { get; set; }
public DayOfWeek FirstDayOfWeek { get; set; }
public string FullDateTimePattern { get; set; }
public static DateTimeFormatInfo InvariantInfo { get; }
public bool IsReadOnly { get; }
public string LongDatePattern { get; set; }
public string LongTimePattern { get; set; }
public string MonthDayPattern { get; set; }
public string[] MonthGenitiveNames { get; set; }
public string[] MonthNames { get; set; }
public string NativeCalendarName { get; }
public string PMDesignator { get; set; }
public string RFC1123Pattern { get; }
public string ShortDatePattern { get; set; }
public string[] ShortestDayNames { get; set; }
public string ShortTimePattern { get; set; }
public string SortableDateTimePattern { get; }
public string TimeSeparator { get; set; }
public string UniversalSortableDateTimePattern { get; }
public string YearMonthPattern { get; set; }
public DateTimeFormatInfo();
public object Clone();
public string GetAbbreviatedDayName(DayOfWeek dayofweek);
public string GetAbbreviatedEraName(int era);
public string GetAbbreviatedMonthName(int month);
public string[] GetAllDateTimePatterns();
public string[] GetAllDateTimePatterns(char format);
public string GetDayName(DayOfWeek dayofweek);
public int GetEra(string eraName);
public string GetEraName(int era);
public object GetFormat(Type formatType);
public static DateTimeFormatInfo GetInstance(IFormatProvider provider);
public string GetMonthName(int month);
public string GetShortestDayName(DayOfWeek dayOfWeek);
public static DateTimeFormatInfo ReadOnly(DateTimeFormatInfo dtfi);
public void SetAllDateTimePatterns(string[] patterns, char format);
}
}