c# datetime._C#| DateTime.Month 속성 및 예
DateTime.Month 속성(DateTime.Month Property)
DateTime.Month Property is used to get the month component of this object. It's a GET property of DateTime class.
DateTime.Month 속성은 이 객체의 월별 구성 요소를 가져오는 데 사용됩니다.이것은 DateTime 클래스의 GET 속성입니다.
Syntax:
구문:
int DateTime.Month;
Return value: 반환 값:
The return type of this Property is int, it returns an integer value i.e. month component of this object.
이 Property의 반환 형식은 int입니다. 대상의 month 분량을 정수로 되돌려줍니다.
Example to demonstrate example of DateTime.Month Property
예를 들어 DateTime을 보여 줍니다.Month 속성의 예
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
//creating an object of DateTime class
//and, initializing it with the current time
//using "Now"
DateTime dt = DateTime.Now;
//getting month component
string month = dt.Month.ToString();
//printing current date & time
Console.WriteLine("Current date & time is: " + dt.ToString());
//printing the day of the week
Console.WriteLine("Month is : " + month);
//just to print a new line
Console.WriteLine();
}
}
}
Output 출력량
Current date & time is: 10/24/2019 7:08:01 AM
Month is : 10
번역:https://www.includehelp.com/dot-net/datetime-month.aspx c# datetime.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.