Statistics() 공개 메소드

public Statistics ( int stat ) : int
stat int
리턴 int
예제 #1
0
 private void frmStatistics_Load(object sender, EventArgs e)
 {
     lblWords.Text        = parent.Statistics(0).ToString();
     lblCharNoSpaces.Text = parent.Statistics(1).ToString();
     lblCharSpaces.Text   = parent.Statistics(2).ToString();
     lblLines.Text        = parent.Statistics(3).ToString();
 }