C# Region



0. Region 을 사용하는 이유?

코드 내에서 사용 용도별로 지역화로 분리 시켜 코드의 가독성을 높여준다. 이렇게 말하면 감이 안올 것이므로 바로 예제 코드를 보도록 하자 


1. Region 사용 예제


public class Foo

{

#region 변수 부분

int fooCount;

     int fooName;


#endregion 


#region 생성자 

public Foo(int count, string name)

{

this.fooCoutn = count;

this.fooName = name;

}

#endregion 

}



참고자료: 

http://nsstbg.tistory.com/5


+ Recent posts