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);
}
}
'프로그래밍언어 > C#' 카테고리의 다른 글
스레드 파라미터넘기기 (0) | 2014.06.10 |
---|---|
[스크랩] c# 으로 PDF 내용을 TEXT 로 가져오기 (0) | 2014.03.07 |
델리게이트 (0) | 2013.07.11 |
C#.NET으로 안드로이드개발(모노프로젝트) (0) | 2013.03.04 |
조건문 (0) | 2013.02.24 |