Environment.TickCount 이란?
시스템 시작 이후 경과 시간(밀리초)을 가져온다.
네임스페이스: System
어셈블리: System.Runtime.dll
public static int TickCount { get; }
컴퓨터가 마지막으로 시작된 이후 경과된 시간(밀리초)을 포함하는 부호 있는 32비트 정수이다.
예제 코드
// Sample for the Environment.TickCount property.
// TickCount cycles between Int32.MinValue, which is a negative
// number, and Int32.MaxValue once every 49.8 days. This sample
// removes the sign bit to yield a nonnegative number that cycles
// between zero and Int32.MaxValue once every 24.9 days.
using System;
class Sample
{
public static void Main()
{
int result = Environment.TickCount & Int32.MaxValue;
Console.WriteLine("TickCount: {0}", result);
}
}
/*
This example produces an output similar to the following:
TickCount: 101931139
*/
참조 사이트
'프로그래밍 > C#' 카테고리의 다른 글
C# Substring 복습하기 (0) | 2023.09.20 |
---|---|
C# Math.Sqrt(Double) vs Math.Pow(Double, Double) (8) | 2023.08.28 |
C# 인터페이스 이해하기 (8) | 2023.08.03 |
C# Closure 이해하기 (22) | 2023.08.02 |
C# 무명 메서드(Anonymous Method) (4) | 2023.08.02 |
댓글