//Type 프로퍼티를 사용한 프로그램
using System;
public class Car
{
public static string CarType;
public static string Type
{
get
{
return CarType;
}
set
{
CarType = value;
}
}
}
public class CarTest
{
public static void Main()
{
Car.Type = "렉서스";
Console.WriteLine("차종은 {0}", Car.Type);
}
}