Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Date Time Formatting

Tags:

c#

datetime

How can I convert my DateTime object to this kind of date format:

  1. Mmm dd yyyy
  2. dd Month yyyy

I am currently doing object.GetDateTimeFormats('D')[1].ToString()

This is giving me January 31, 2012. But I should be able to get these two things:

  1. Jan 31, 2012
  2. 31 January, 2012
like image 937
Varun Sharma Avatar asked Jan 31 '12 03:01

Varun Sharma


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is C full form?

Originally Answered: What is the full form of C ? C - Compiler . C is a general-purpose, high-level language that was originally developed by Dennis M. Ritchie to develop the UNIX operating system at Bell Labs. C was originally first implemented on the DEC PDP-11 computer in 1972.

How old is the letter C?

The letter c was applied by French orthographists in the 12th century to represent the sound ts in English, and this sound developed into the simpler sibilant s.

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.


3 Answers

Use a custom DateTime formatting string:

// Returns Jan 31, 2012
myDateTimeObject.ToString("MMM dd, yyyy");

// Returns 31 January, 2012
myDateTimeObject.ToString("dd MMMM, yyyy");

All of the custom date/time formats are listed here.

like image 55
Robert Harvey Avatar answered Oct 15 '22 10:10

Robert Harvey


All types of date formatting you need.

Just select the correct string format you need:

  • MMM - gives you Jan, Feb, Mar
  • MMMM - gives you January, February, March
like image 43
Bryan Hong Avatar answered Oct 15 '22 11:10

Bryan Hong


Console.WriteLine(DateTime.Now.ToString("d-MMM-yy"));

18-Jan-18

Console.WriteLine(DateTime.Now.ToString("d-MM-yy"));

18-1-18

Console.WriteLine(DateTime.Now.ToString("d-MM-yyyy"));

18-1-2018

MoreDetails :- http://www.code-sample.net/CSharp/Format-DateTime

like image 1
MAFAIZ Avatar answered Oct 15 '22 10:10

MAFAIZ