반응형
C# DateTime 소수점 시간까지 표시 하기
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
namespace dateTime
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(DateTime.ParseExact("20080807144334.410187", "yyyyMMddHHmmss.ffffff", System.Globalization.CultureInfo.InvariantCulture));
Console.WriteLine(DateTime.Now.TimeOfDay);
Console.WriteLine(DateTime.Now.TimeOfDay.ToString());
Console.WriteLine(DateTime.Today.ToShortDateString() + " " + DateTime.Now.TimeOfDay.ToString());
Thread.Sleep(100);
Console.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fffffff"));
}
}
}
'.NET > Basic is the Best' 카테고리의 다른 글
어떤 것으로 몸보신 해야할지 고민이네요 (0) | 2010.04.23 |
---|---|
Enums and Structs in C# sample (0) | 2010.04.01 |
좀비 프로세스 | Application.Exit() vs Environmrnt.Exit(0) (0) | 2010.03.16 |