Languages
[Edit]
EN

C# / .NET - convert DateTime to mm/dd/yyyy

10 points
Created by:
Root-ssh
174740

In C# / .NET it is possible to convert DateTime object to MM/dd/yyyy formatted string in few ways.

1. DateTime.ToString method example

DateTime now = DateTime.Now;

Console.WriteLine(now.ToString("MM/dd/yyyy"));

Output:

08/14/2019
Note: DateTime.ToString method uses format description - see for other examples here.

2. String.Format method example

DateTime now = DateTime.Now;

Console.WriteLine(string.Format("{0:MM/dd/yyyy}", now));

Output:

08/14/2019
Note: String.Format method uses argument index and format description delimited with ":" character - see for other examples here.

See also

  1. C# / .NET - convert DateTime to string fromat

References

  1. DateTime.ToString Method - Microsoft Docs
  2. String.Format Method - Microsoft Docs
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

C# - DateTime conversion

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join