fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.IO;
  5. using System.Security.Cryptography;
  6. using System.Text;
  7. using System.Globalization;
  8.  
  9. public class Test
  10. {
  11. public static void Main()
  12. {
  13. float num1;
  14.  
  15. if (float.TryParse("0", out num1) !=true) //使用int.tryparse出來會是布林值
  16. {
  17. Console.WriteLine("Press any key to exit.");
  18.  
  19. }
  20. }
  21. }
Success #stdin #stdout 0.01s 14752KB
stdin
Standard input is empty
stdout
Standard output is empty