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
37
38
39
40
41
42
43
44
45
|
using System;
namespace Property
{
interface INamedValue
{
string Name
{
get;
set;
}
}
class NamedValue : INamedValue
{
public string Name
{
get;
set;
}
public string Value
{
get;
set;
}
}
class MainApp
{
static void Main(string[] args)
{
NamedValue name = new NamedValue()
{
Name = "이름",
Value = "인터"
};
NamedValue height = new NamedValue()
{
Name = "키",
Value = "180"
};
Console.WriteLine("{0} : {1}", name.Name, name.Value);
Console.WriteLine("{0} : {1}", height.Name, height.Value);
}
}
}
|
'Programming > C#' 카테고리의 다른 글
C# var형 사용 예제 (0) | 2012.08.17 |
---|---|
Property 사용예제 (0) | 2012.08.17 |
추상클래스 property (abstract class property) (0) | 2012.08.17 |