Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

전날을 표시하는 C# 프로그램

<시간/>

전날을 표시하려면 AddDays() 메서드와 -1 값을 사용하여 전날을 가져옵니다.

먼저 다음을 사용하여 현재 날짜를 가져옵니다. -

DateTime.Today

이제 AddDays() 메서드에 -1을 추가하여 전날을 가져옵니다. -

DateTime.Today.AddDays(-1)

다음은 코드입니다 -

예시

using System;
using System.Collections.Generic;
using System.Linq;
public class Demo {
   public static void Main() {
      Console.WriteLine("Today = {0}", DateTime.Today);
      Console.WriteLine("Previous Day = {0}", DateTime.Today.AddDays(-1));
   }
}

출력

Today = 9/4/2018 12:00:00 AM
Previous Day = 9/3/2018 12:00:00 AM