fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. System.Collections.ArrayList listaEnteros = new System.Collections.ArrayList();
  8.  
  9. // Agregación de tipos enteros:
  10. listaEnteros.Add(3);
  11. listaEnteros.Add(11);
  12.  
  13. // Agregación de un objeto string.
  14. // No se generá ningún tipo de error en tiempo de
  15. // compilación, pero si posiblemente en tiempo de ejecución:
  16. listaEnteros.Add("Blog xCSw");
  17.  
  18. int acumulador = 0;
  19.  
  20. // Itera la lista `listaEnteros`, sin embargo se produce una excepción
  21. // (InvalidCastException):
  22. foreach(int numero in listaEnteros)
  23. {
  24. acumulador += numero;
  25. }
  26. }
  27. }
Runtime error #stdin #stdout #stderr 0.02s 36320KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Unhandled Exception: System.InvalidCastException: Cannot cast from source type to destination type.
  at Test.Main () [0x00000] in <filename unknown>:0 
[ERROR] FATAL UNHANDLED EXCEPTION: System.InvalidCastException: Cannot cast from source type to destination type.
  at Test.Main () [0x00000] in <filename unknown>:0