CSharp examples for System:DateTime Format
DateTime To International Format Short
using System.Threading.Tasks; using System.Text; using System.Linq; using System.Collections.Generic; using System;/*from w w w. j a va 2 s. co m*/ public class Main{ public static string ToInternationalFormatShort(this DateTime d) { return d.ToString("yyyy-MM-dd"); } }