CSharp examples for System:DateTime Format
To File Date Time
// Copyright (c)2008-2011 Mark II Software, LLC. All Rights Reserved. using System.Text; using System.Collections.Generic; using System;//w ww . j av a2s .co m public class Main{ // Format as YYYYMMDD public static string ToFileDateTime(this DateTime dt) { return dt.ToString("yyyyMMdd-hhmmss"); } }