C#:
  1. try
  2. {
  3.    string valor_Int = null;
  4.    // Devuelve el valor usando -Parse- con valor CERO
  5.    int valorConvert = Convert.ToInt32(valor_Int);
  6.    // Devuelve una excepcion de tipo ArgumentNullException
  7.    int valorParse = int.Parse(valor_Int);
  8. }
  9. catch (Exception ex)
  10. {
  11.    Console.WriteLine(ex.Message);
  12. }
  13. Console.ReadLine();