C#에서 현재 시간 가져 오기

Muhammad Maisam Abbas 2024년2월16일
C#에서 현재 시간 가져 오기

이 자습서에서는 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형식으로 저장했습니다.

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

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

관련 문장 - Csharp DateTime