using system.net;
using system;
using system.management;
using system.runtime.interopservices;
public class getip
//獲取本機的mac
public string getlocalmac()
return(mac);}
//獲取遠端主機ip
public string getremoteip(string remotehostname)
catch(exception err)
",err.message);
} return 0.tostring();}
public static void main(string args)
{getip gi = new getip();
console.writeline("本地網絡卡資訊:");
console.writeline(gi.getlocalip() + " - " + gi.getlocalmac());
console.writeline("/n/r遠端網絡卡資訊:");
string temp = gi.getremoteip("scmobile-tj2");
for(int i=0;i
**:
C 獲取IP及MAC位址
利用dns類和wmi規範獲取ip及mac位址 在c 程式設計中,要獲取主機名和主機ip位址,是比較容易的.它提供的dns類,可以輕鬆的取得主機名和ip位址.示例 string strhostname dns.gethostname 得到本機的主機名 iphostentry ipentry dns.g...
C 獲取IP及MAC位址
public class hostinfo 1 d d 2 0 4 d 25 0 5 d 1 d d 2 0 4 d 25 0 5 d 1 d d 2 0 4 d 25 0 5 d 1 d d 2 0 4 d 25 0 5 獲取本機主機名 public static string gethostna...
C 獲取本機IP位址和Mac位址的方法
查詢了幾個方法,經過除錯修改,下面這個方法能很好的獲取到本地的ip和mac位址。可以用於這方面的功能實現。主要是要新增system.management的引用。using system using system.management using system.net public class pro...