CSharp examples for System:DateTime Year
To Year Month Day Hour Minute Second Format
// Copyright (c) Microsoft Corporation. All rights reserved. using System;/* w ww . j a v a2s.c om*/ public class Main{ public static string ToYearMonthDayHourMinuteSecondFormat(this DateTime dateTime) { return dateTime.ToString("yyyy-MM-dd HH:mm:ss"); } }