C# 클래스 LiskovSubstitutionPrinciple.Rectangle

파일 보기 프로젝트 열기: 7digital/Liskov

보호된 프로퍼티들

프로퍼티 타입 설명
m_height int
m_width int

공개 메소드들

메소드 설명
GetArea ( ) : int
getHeight ( ) : int
getWidth ( ) : int
setHeight ( int height ) : void
setWidth ( int width ) : void

메소드 상세

GetArea() 공개 메소드

public GetArea ( ) : int
리턴 int

getHeight() 공개 메소드

public getHeight ( ) : int
리턴 int

getWidth() 공개 메소드

public getWidth ( ) : int
리턴 int

setHeight() 공개 메소드

public setHeight ( int height ) : void
height int
리턴 void

setWidth() 공개 메소드

public setWidth ( int width ) : void
width int
리턴 void

프로퍼티 상세

m_height 보호되어 있는 프로퍼티

protected int m_height
리턴 int

m_width 보호되어 있는 프로퍼티

protected int m_width
리턴 int