C# 클래스 AppStore.Models.Card

It is related to the FlashCard App-Template. It is the model of cards.
파일 보기 프로젝트 열기: BuildmLearn/BuildmLearn-Store 1 사용 예제들

공개 메소드들

메소드 설명
Card ( string question, string answer, string hint, string imagePath )

Public constructor

getAnswer ( ) : string

Gets the answer.

getHint ( ) : string

Gets the hint

getImagePath ( ) : string

Gets the ImagePath

getQuestion ( ) : string

Gets the question.

setAnswer ( string mAnswer ) : void

Sets the answer

setHint ( string mHint ) : void

Sets the hint

setImagePath ( string mImagePath ) : void

Sets the ImagePath

setQuestion ( string mQuestion ) : void

Sets the Question.

메소드 상세

Card() 공개 메소드

Public constructor
public Card ( string question, string answer, string hint, string imagePath )
question string String question
answer string String answer
hint string String hint
imagePath string String imagePath

getAnswer() 공개 메소드

Gets the answer.
public getAnswer ( ) : string
리턴 string

getHint() 공개 메소드

Gets the hint
public getHint ( ) : string
리턴 string

getImagePath() 공개 메소드

Gets the ImagePath
public getImagePath ( ) : string
리턴 string

getQuestion() 공개 메소드

Gets the question.
public getQuestion ( ) : string
리턴 string

setAnswer() 공개 메소드

Sets the answer
public setAnswer ( string mAnswer ) : void
mAnswer string String answer
리턴 void

setHint() 공개 메소드

Sets the hint
public setHint ( string mHint ) : void
mHint string
리턴 void

setImagePath() 공개 메소드

Sets the ImagePath
public setImagePath ( string mImagePath ) : void
mImagePath string
리턴 void

setQuestion() 공개 메소드

Sets the Question.
public setQuestion ( string mQuestion ) : void
mQuestion string String Question
리턴 void