using System; public class Test{ public static void Main() { double result; Debug.WriteLine(double.TryParse("0.2", NumberStyles.AllowDecimalPoint, CultureInfo.InvariantCulture, out result)); Debug.WriteLine(result); }}
Standard input is empty
prog.cs(8,17): error CS0103: The name `Debug' does not exist in the current context prog.cs(9,17): error CS0103: The name `Debug' does not exist in the current context Compilation failed: 2 error(s), 0 warnings
Standard output is empty
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!