시간(2)
-
6장 - BCL - 1
BCLBCL은 당연하게도 Base Class Library의 약자.입/출력 및 프로그램의 처리에 도움을 주는 여러 기능을 제공하고 있다. System.DateTime DateTime now = DataTime.Nowstatic속성인 Now를 통해 현재 날짜/시간을 알아낼 수 있다. static void Main(string[] args) { DateTime before = DateTime.Now; Sum(); DateTime after = DateTime.Now; long gap = after.Ticks - before.Ticks; Console.WriteLine("Total ticks : " + gap); Console.WriteLine("Milliseconds : " + (gap / 10000)); ..
2014.12.07 -
루아로 현재 시간 얻어오기
--local today = os.date("%y.%m.%d %X", now)local today = os.date("*t") -- 테이블로 받는 방식for i,v in pairs(today) doprint(i, v)end -- string으로 받는 방식today = os.date("%y %m %d %X")print("\n", today)
2014.04.30