CSharp examples for System:DateTime Format
Datetime Formats string list
using System.Globalization; using System.Web; using System.Linq; using System.Collections.Generic; using System;/*w w w .j av a 2 s. c o m*/ public class Main{ public static string[] Datetime_Formats(string defaultFormat) { var array = new string[] { defaultFormat, "d-MM-yyyy", "dd-M-yyyy", "d-MM-yy", "dd-M-yy", "d-MMM-yyyy", "dd-MMM-yyyy", "d-MMM-yy", "dd-MMM-yy", "d-MM-yyyy HH:mm:ss tt", "dd-M-yyyy HH:mm:ss tt", "d-MM-yy HH:mm:ss tt", "dd-M-yy HH:mm:ss tt", "d-MMM-yyyy HH:mm:ss tt", "dd-MMM-yyyy HH:mm:ss tt", "d-MMM-yy HH:mm:ss tt", "dd-MMM-yy HH:mm:ss tt", "d-MM-yyyy hh:mm:ss tt", "dd-M-yyyy hh:mm:ss tt", "d-MM-yy hh:mm:ss tt", "dd-M-yy hh:mm:ss tt", "d-MMM-yyyy hh:mm:ss tt", "dd-MMM-yyyy hh:mm:ss tt", "d-MMM-yy hh:mm:ss tt", "dd-MMM-yy hh:mm:ss tt", "MM-d-yyyy", "M-dd-yyyy", "MM-d-yy", "M-dd-yy", "MMM-d-yyyy", "MMM-dd-yyyy", "MMM-d-yy", "MMM-dd-yy", "MM-d-yyyy HH:mm:ss tt", "M-dd-yyyy HH:mm:ss tt", "MM-d-yy HH:mm:ss tt", "M-dd-yy HH:mm:ss tt", "MMM-d-yyyy HH:mm:ss tt", "MMM-dd-yyyy HH:mm:ss tt", "MMM-d-yy HH:mm:ss tt", "MMM-dd-yy HH:mm:ss tt", "MM-d-yyyy hh:mm:ss tt", "M-dd-yyyy hh:mm:ss tt", "MM-d-yy hh:mm:ss tt", "M-dd-yy hh:mm:ss tt", "MMM-d-yyyy hh:mm:ss tt", "MMM-dd-yyyy hh:mm:ss tt", "MMM-d-yy hh:mm:ss tt", "MMM-dd-yy hh:mm:ss tt", "yyyy-MM-d", "yyyy-M-dd", "yy-MM-d", "yy-M-dd", "yyyy-MMM-d", "yyyy-MMM-dd", "yy-MMM-d", "yy-MMM-dd", "yyyy-MM-d HH:mm:ss tt", "yyyy-M-dd HH:mm:ss tt", "yy-MM-d HH:mm:ss tt", "yy-M-dd HH:mm:ss tt", "yyyy-MMM-d HH:mm:ss tt", "yyyy-MMM-dd HH:mm:ss tt", "yy-MMM-d HH:mm:ss tt", "yy-MMM-dd HH:mm:ss tt", "yyyy-MM-d hh:mm:ss tt", "yyyy-M-dd hh:mm:ss tt", "yy-MM-d hh:mm:ss tt", "yy-M-dd hh:mm:ss tt", "yyyy-MMM-d hh:mm:ss tt", "yyyy-MMM-dd hh:mm:ss tt", "yy-MMM-d hh:mm:ss tt", "yy-MMM-dd hh:mm:ss tt", "d/MM/yyyy", "dd/M/yyyy", "d/MM/yy", "dd/M/yy", "d/MMM/yyyy", "dd/MMM/yyyy", "d/MMM/yy", "dd/MMM/yy", "d/MM/yyyy HH:mm:ss tt", "dd/M/yyyy HH:mm:ss tt", "d/MM/yy HH:mm:ss tt", "dd/M/yy HH:mm:ss tt", "d/MMM/yyyy HH:mm:ss tt", "dd/MMM/yyyy HH:mm:ss tt", "d/MMM/yy HH:mm:ss tt", "dd/MMM/yy HH:mm:ss tt", "d/MM/yyyy hh:mm:ss tt", "dd/M/yyyy hh:mm:ss tt", "d/MM/yy hh:mm:ss tt", "dd/M/yy hh:mm:ss tt", "d/MMM/yyyy hh:mm:ss tt", "dd/MMM/yyyy hh:mm:ss tt", "d/MMM/yy hh:mm:ss tt", "dd/MMM/yy hh:mm:ss tt", "MM/d/yyyy", "M/dd/yyyy", "MM/d/yy", "M/dd/yy", "MMM/d/yyyy", "MMM/dd/yyyy", "MMM/d/yy", "MMM/dd/yy", "MM/d/yyyy HH:mm:ss tt", "M/dd/yyyy HH:mm:ss tt", "MM/d/yy HH:mm:ss tt", "M/dd/yy HH:mm:ss tt", "MMM/d/yyyy HH:mm:ss tt", "MMM/dd/yyyy HH:mm:ss tt", "MMM/d/yy HH:mm:ss tt", "MMM/dd/yy HH:mm:ss tt", "MM/d/yyyy hh:mm:ss tt", "M/dd/yyyy hh:mm:ss tt", "MM/d/yy hh:mm:ss tt", "M/dd/yy hh:mm:ss tt", "MMM/d/yyyy hh:mm:ss tt", "MMM/dd/yyyy hh:mm:ss tt", "MMM/d/yy hh:mm:ss tt", "MMM/dd/yy hh:mm:ss tt", "yyyy/MM/d", "yyyy/M/dd", "yy/MM/d", "yy/M/dd", "yyyy/MMM/d", "yyyy/MMM/dd", "yy/MMM/d", "yy/MMM/dd", "yyyy/MM/d HH:mm:ss tt", "yyyy/M/dd HH:mm:ss tt", "yy/MM/d HH:mm:ss tt", "yy/M/dd HH:mm:ss tt", "yyyy/MMM/d HH:mm:ss tt", "yyyy/MMM/dd HH:mm:ss tt", "yy/MMM/d HH:mm:ss tt", "yy/MMM/dd HH:mm:ss tt", "yyyy/MM/d hh:mm:ss tt", "yyyy/M/dd hh:mm:ss tt", "yy/MM/d hh:mm:ss tt", "yy/M/dd hh:mm:ss tt", "yyyy/MMM/d hh:mm:ss tt", "yyyy/MMM/dd hh:mm:ss tt", "yy/MMM/d hh:mm:ss tt", "yy/MMM/dd hh:mm:ss tt", }; return array; } }