프로그래밍언어/C#

클래스상속

부산딸랑이 2013. 7. 11. 16:26

using System;


class Example

{

    public Example(int property)

    {

        Property = property;

    }

    public int Property { get; private set; }

}


class Program

{

    static void Main()

    {

        Example example = new Example(5);

        Console.WriteLine(example.Property);

    }

}