제목 : [1] Main.cs : 속성 테스트를 위한 클래스
글번호:
|
|
270
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2005/06/20 오후 4:24:00
|
조회수:
|
|
6449
|
//Main.cs
using System;
namespace 속성
{
public class Property
{
public static void Main(string[] args)
{
#region [1] Car 클래스 사용(static)
Console.WriteLine(Car.Color);//red
Car.Color = "black";//public 필드 사용
Car.Type = "렉서스";//속성 사용(추천)
Console.WriteLine(
"종류 : {0}, 색상 : {1}"
, Car.Type //클래스.속성
, Car.Color //클래스.필드
);
#endregion
#region [2] Person 클래스 사용(instance)
//Person 클래스의 인스턴스 생성
Person person = new Person("홍길동");
//읽기전용 속성(프로퍼티) 출력
Console.WriteLine(
"성 : {0}, 이름 : {1}"
, person.LastName
, person.FirstName
);
#endregion
}
}
}