Exemplo n.º 1
0
 private bool IsQuestion()
 {
     if (ValidatorText.IsQuestion(QuestionTextBox.Text) && QuestionTextBox.Text.Length > MINIMUN_LENGHT &&
         !String.IsNullOrWhiteSpace(QuestionTextBox.Text))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }