Example #1
0
        private bool ValidarNomeJogador()
        {
            if (string.IsNullOrEmpty(Nome) || string.IsNullOrWhiteSpace(Nome) || Nome.StartsWith(" ") || Nome.EndsWith(" "))
            {
                return(false);
            }

            if (Nome.Any(char.IsDigit) || Nome.Any(char.IsSymbol) || Nome.Any(char.IsNumber))
            {
                return(false);
            }

            return(true);
        }