CSharp examples for System:DateTime Format
DateTime To ISO Format
using System;//from w ww.j av a 2 s. c o m public class Main{ public static string UtilToISOFormat(this DateTime dt) { return dt.ToString("yyyy-MM-ddTHH:mm:ss.fffzzzz"); } }