Program.cs 329 B

1234567891011121314151617181920
  1. using SIMDP.Project;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ConsoleApp1
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Tool.TestNetWorkConnection();
  14. Console.Read();
  15. }
  16. }
  17. }