•      Powered by
 

Format Date/Time in a console app class

This class formats a Date-Time in a console application.

Webpage code

using System;

namespace ConsoleApplication1
{
	class Class1
	{
		static void Main(string[] args)
		{
			string sDate = "2001-04-23 08:47:56.000";
			string sResult = string.Format("{0:d}", sDate);
			Console.WriteLine(sResult);
			Console.ReadLine();
		}
	}
}
 

tio

Terms of Use | Privacy Statement ©2005-2006 IISLogs.com. All rights reserved - Powered by IIS7 - info @ www.IIS.net