C#에서 현재 시간 가져 오기
Muhammad Maisam Abbas
2024년2월16일
이 자습서에서는 C#의 문자열 변수에서 현재 시간을 가져 오는 방법에 대해 설명합니다.
C#의DateTime.Now
속성을 사용하여 현재 시간 가져 오기
DateTime
구조는 C#의 시간 인스턴스를 나타냅니다. DateTime
구조의 DateTime.Now
속성은 현지 시간으로 표현 된 로컬 시스템의 현재 날짜와 시간을 가져옵니다. C#의 DateTime.ToString()
method를 사용하여DateTime.Now
속성의 결과를 문자열 변수로 변환 할 수 있습니다. 다음 코드 예제는 C#의DateTime.Now
속성을 사용하여 문자열 변수에서 로컬 컴퓨터의 현재 시간을 얻는 방법을 보여줍니다.
using System;
namespace get_current_time {
class Program {
static void Main(string[] args) {
string datetime = DateTime.Now.ToString("hh:mm:ss tt");
Console.WriteLine(datetime);
}
}
}
출력:
02:57:57 PM
내 로컬 시스템의 현재 시간을DateTime.Now
속성과 C#의DateTime.ToString()
함수가있는datetime
문자열 변수 내에hh:mm:ss tt
형식으로 저장했습니다.
Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.
LinkedIn