How do I get a computer's name and IP address using VB.NET?

后端 未结 10 1041
春和景丽
春和景丽 2020-12-09 11:32

How can i get ip address of system by sending mac ip address as input using vb.net coding?

10条回答
  •  温柔的废话
    2020-12-09 12:37

    Label12.Text = "My ID : " + System.Net.Dns.GetHostByName(Net.Dns.GetHostName()).AddressList(0).ToString()
    

    use this code, without any variable

提交回复
热议问题