c# datetime._C#| DateTime.Year 속성 및 예

2427 단어
c# datetime.

DateTime.Month 속성(DateTime.Month Property)


DateTime.Month Property is used to get the year component of this object. It's a GET property of DateTime class.
DateTime.Month 속성은 이 객체의 연도 구성 요소를 가져오는 데 사용됩니다.이것은 DateTime 클래스의 GET 속성입니다.
Syntax:
구문: int DateTime.Year; Return value:
반환 값:
The return type of this Property is int, it returns an integer value i.e the year component of this object.
이 Property의 반환 형식은 int입니다. 이 대상의 Year 분량을 정수로 되돌려줍니다.
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 year component string month = dt.Year.ToString(); //printing current date & time Console.WriteLine("Current date & time is: " + dt.ToString()); //printing the day of the week Console.WriteLine("Year is : " + month); //just to print a new line Console.WriteLine(); } } } Output
출력량Current date & time is: 10/24/2019 8:08:55 AM Year is : 2019 번역:https://www.includehelp.com/dot-net/datetime-year.aspx
c# datetime.

좋은 웹페이지 즐겨찾기