1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
using System;
namespace Birth
{
class BirthDayInfo
{
public string Name
{
get;
set;
}
public DateTime Birthday
{
get;
set;
}
public int Age
{
get
{
return new DateTime(DateTime.Now.Subtract(Birthday).Ticks).Year;
}
}
}
class Myapp
{
static void Main(string[] args){
BirthDayInfo birth = new BirthDayInfo(){
Name = "서현",
Birthday = new DateTime(1991, 6, 28)
};
Console.WriteLine("Name = {0} BirthDay = {1}", birth.Name, birth.Age);
}
}
}
|
'Programming > C#' 카테고리의 다른 글
C# var형 사용 예제 (0) | 2012.08.17 |
---|---|
인터페이스 property (Interface property) (0) | 2012.08.17 |
추상클래스 property (abstract class property) (0) | 2012.08.17 |