제목 : readonly 키워드를 사용한 프로그램
//readonly 키워드를 사용한 프로그램
using System;
public class Memory
{
public static readonly Memory Dog = new Memory("dog는 개입니다. ");
public static readonly object Cat = "cat은 고양이입니다. ";
private static object BrainCell;
public Memory(object Experience)
{
BrainCell = Experience;
}
public static void Remember()
{
Console.WriteLine("{0}", BrainCell);
}
}
public class Experience
{
public static void Main()
{
Console.Write("기억한 내용은 : ");
Console.WriteLine("{0}", Memory.Cat);
Memory xp = Memory.Dog;
Console.Write("기억한 내용은 : ");
Memory.Remember();
}
}