fork download
  1. using System;
  2. using System.Text;
  3. using System.Linq;
  4. using System.Collections.Generic;
  5.  
  6. class Program
  7. {
  8. public static void Main(string[] args)
  9. {
  10. Console.WriteLine("String '12': " + Convert.ToInt32("12"));
  11. Console.WriteLine("Char '2': " + Convert.ToInt32('2'));
  12. }
  13. }
  14.  
Success #stdin #stdout 0.04s 23928KB
stdin
Standard input is empty
stdout
String '12': 12
Char '2': 50