C# DateTime




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// DateTime 날짜와 시간을 저장하는 데이터 타입
    // 그 외 관련된 많은 기능을 제공함
    // 구조체
 
    // DataTime.Now; // 현재 시간을 나타냄
    
    // 간단하게 사용자의 생일을 입력해서 나이를 알수 있다.
    private DateTime birthday;
 
    public DateTime Birthday
    {
        get { return birthday}
        set
        {
            birthday = value;
        }
    }
 
    public int Age
    {
        get { return DateTime.Now.Year - birthday.Year; }
    }
 
cs

댓글