네트워크 로컬 아이피, 글로벌 아이피 확인
로컬 아이피를 가져오는 함수1 using System.Net.NetworkInformation; using System.Net.Sockets; using System.Diagnostics; using System; using System.Linq; using System.Net; public static IPAddress LocalIPAddress1() { if (!System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable()) { return null; } IPHostEntry host = Dns.GetHostEntry(Dns.GetHostName()); return host .AddressList .FirstOrDefault(ip => ..
C#
2021. 1. 21. 18:35