na88 Posted May 7, 2011 Report Share Posted May 7, 2011 Señores, buenas, Mi consuta es la siguiente, estoy un poco mariado con las validaciones de c sharp, me gustaria si me pudieran ayudar con las mismas he podido validar para que en una ejecucion de consola no me ingresen letras y solo numeros con try, pero al revez no hay caso, alguien me podria ayudar con el tema.... se que mi pregunta es basica, pero por algo se empieza y les pido ayuda! gracias! Link to comment Share on other sites More sharing options...
hightechboy Posted May 8, 2011 Report Share Posted May 8, 2011 public bool IsNumeric(object Expression) { bool isNum; double retNum; isNum = Double.TryParse(Convert.ToString(Expression), System.Globalization.NumberStyles.Any,System.Globalization.NumberFormatInfo.InvariantInfo, out retNum ); return isNum; } Esa funcion salio buscando en Google, pero existen varias formar de comprobar gracias al TryParse o haciendo un salto a isNumeric de VB.net. Link to comment Share on other sites More sharing options...
na88 Posted May 9, 2011 Author Report Share Posted May 9, 2011 Voy a tratar....gracias por la ayuda! posteo como me fue luego, saludos y gracias! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now