EN
C# / .NET - convert DateTime to string
5
points
In C# / .NET to convert DateTime to string it is necessary to call DateTime.ToString method.
DateTime.ToString method example
DateTime now = DateTime.Now;
Console.WriteLine(now.ToString());Output:
08/14/2019 22:10:37Note: this example has been run with independent culture.