博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#获取本机所有IP地址(包括局域网和本机外网IP)
阅读量:6432 次
发布时间:2019-06-23

本文共 628 字,大约阅读时间需要 2 分钟。

using System.Net;namespace Jihua.Cnblogs.Com{    class NetHelper    {        ///         /// 获取所有本机IP地址,包括局域网IP和本机外网IP(如果有)        ///         /// 
192.168.1.10|220.181.112.143
public static string GetAllIP() { IPAddress[] IP = Dns.GetHostAddresses(Dns.GetHostName()); int m_count = IP.Length; string m_AllIP = string.Empty; for (int i = 0; i < m_count; i++) { if (i > 0) m_AllIP= m_AllIP+"|"; m_AllIP += IP[i].ToString() ; } return m_AllIP; } }}

转载地址:http://vatga.baihongyu.com/

你可能感兴趣的文章
我的友情链接
查看>>
使用List的remove方法需要的注意的问题
查看>>
Ansible的介绍、安装、配置及常用模块介绍
查看>>
编码列表
查看>>
eigrp 配置
查看>>
谈一谈 redis 集群
查看>>
concurrent包
查看>>
分区和格式化硬盘
查看>>
在Linux下调试Python代码的各种方法
查看>>
centos7塔建MQ服务器
查看>>
Peer authentication failed for user
查看>>
超强的.NET图像工具包VintaSoftImaging.NET SDK更新至v8.6丨75折优惠
查看>>
阿里云上Kubernetes集群联邦
查看>>
我的Git忽略文件
查看>>
洛谷2219:[HAOI2007]修筑绿化带——题解
查看>>
监控webservice信息
查看>>
a标签中href=""的几种用法(转)
查看>>
python
查看>>
ubuntu 常用生产环境部署配置测试调优
查看>>
【JS】//将中文逗号转换为英文逗号
查看>>