본문 바로가기
C#

C# 시간을 Tick으로 변환 또는 Tick을 시간형태로 변환

by violetoz 2013. 6. 3.


            System.TimeSpan tspan = System.TimeSpan.FromTicks(DateTime.Now.Ticks);

            long curTime = (long)tspan.TotalSeconds;


            string time = curTime.ToString();

            MessageBox.Show(time);

            DateTime dt;

            TimeSpan tSpan;


            long curTimes;

            long.TryParse(time, out curTimes);

            tSpan = TimeSpan.FromSeconds(curTimes);

            dt = new DateTime(tSpan.Ticks);

            MessageBox.Show(dt.ToString());

'C#' 카테고리의 다른 글

C# DllImport 사용하기  (0) 2013.06.05
C# DateTime.Parse  (0) 2013.06.01
C# Tick Count사용해서 성능테스트하기  (0) 2013.05.28
C# Time  (0) 2013.05.28
C# 가비지컬렉터와 가비지컬렉션  (0) 2013.05.14