fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int myInt;
  8. string name="adam";
  9. myInt=Convert.ToInt32("name");
  10. Console.WriteLine("Name as an int is {0}", name);
  11. Console.ReadLine();
  12.  
  13. }
  14. }
Runtime error #stdin #stdout 0.03s 39568KB
stdin
Standard input is empty
stdout
Standard output is empty