Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ValuePass
- {
- internal class Program
- {
- private static void Main()
- {
- Test1();
- Test2();
- }
- private static void Test1()
- {
- try
- {
- int numero = int.Parse("123");
- Console.WriteLine("El número vale {0}", numero);
- }
- catch (Exception)
- {
- Console.WriteLine("No es un número válido");
- }
- }
- private static void Test2()
- {
- int numero;
- if (int.TryParse("123", out numero))
- {
- Console.WriteLine("El número vale {0}", numero);
- }
- else
- {
- Console.WriteLine("No es un número válido");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement