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.
xxxxxxxxxx
1
DateTime now = DateTime.Now;
2
3
Console.WriteLine(now.ToString());
Output:
xxxxxxxxxx
1
08/14/2019 22:10:37
Note: this example has been run with independent culture.