public bool SetInicial(Estado estado) { bool isInEstados = Estados.IndexOf(estado) != -1; if (isInEstados) { EstadoInicial = estado; return(true); } return(false); }
// Valida a UF digitada public static bool ValidaEstado(string Dado) { const string Estados = "SPMGRJRSSCPRESDFMTMSGOTOBASEALPBPEMARNCEPIPAAMAPFNACRRRO"; int Posicao; bool Result; Result = true; if (Dado != "") { Posicao = Estados.IndexOf(Dado.ToUpper()); if ((Posicao == 0) || ((Posicao % 2) == 0)) { Result = false; } } return(Result); }