示例#1
0
 private static string?getIp()
 {
     try
     {
         InetAddress addr = InetAddress.getLocalHost();
         return(addr.getAddress().tostring());
     }
     catch (UnknownHostException e)
     {
     }
 }