Tag Archives: DateTime
DateTime.ToString
Sometimes, I’ve been formatting date in order to display them in an application. DateTime.ToString Converts the value of the current DateTime object to its equivalent string representation using the specified format. Here is some nice code from msdn that shows you that. using System; public class DateToStringExample { public static void Main() { DateTime dateValue = new […]