private bool Validation(string[] arr) { bool result = true; if (arr.Length == 0) { result = false; if (_visualizator != null) { _visualizator.AnswerCatcher(WorkResult.NeedInstruction); } } return(result); }