摘要:
static bool CheckPortAvailable(int port) { bool isAvailable = true; IPGlobalProperties ipGlobalProperties = IPGlobalProperties.GetIPGlobalProperties(); foreach (var tcplisten in ipGlobalProperties.GetActiveTcpListeners()) { if (tcpli... 阅读全文