资源简介
适合新手学习,获取主机名 ip 以及扫描局域网IP
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.Net.Sockets;
using System.Net.NetworkInformation;
namespace ip
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender EventArgs e)
{
string name = Dns.GetHostName();
textBox1.Text = name;
IPAddress[] ipads = Dns.GetHostAddresses(name);
foreach(IPAddress ip in ipads)
{
if (ip.AddressFamily == AddressFamily.InterNetwork)
{
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-05-01 20:43 ip\
文件 5236 2018-05-01 20:37 ip\Form1.Designer.cs
文件 1895 2018-05-01 20:43 ip\Form1.cs
文件 5817 2018-05-01 20:37 ip\Form1.resx
文件 483 2018-04-22 23:42 ip\Program.cs
目录 0 2018-04-22 23:42 ip\Properties\
文件 1336 2018-04-22 23:42 ip\Properties\AssemblyInfo.cs
文件 2856 2018-04-22 23:42 ip\Properties\Resources.Designer.cs
文件 5612 2018-04-22 23:42 ip\Properties\Resources.resx
文件 1089 2018-04-22 23:42 ip\Properties\Settings.Designer.cs
文件 249 2018-04-22 23:42 ip\Properties\Settings.settings
目录 0 2018-04-22 23:42 ip\bin\
目录 0 2018-04-22 23:49 ip\bin\Debug\
文件 10752 2018-05-01 20:44 ip\bin\Debug\ip.exe
文件 22016 2018-05-01 20:44 ip\bin\Debug\ip.pdb
文件 11600 2018-05-01 15:09 ip\bin\Debug\ip.vshost.exe
文件 490 2017-09-29 21:43 ip\bin\Debug\ip.vshost.exe.manifest
文件 3663 2018-04-22 23:49 ip\ip.csproj
目录 0 2018-04-22 23:42 ip\obj\
目录 0 2018-04-22 23:42 ip\obj\x86\
目录 0 2018-05-01 20:41 ip\obj\x86\Debug\
文件 2494 2018-05-01 20:29 ip\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 7117 2018-05-01 20:29 ip\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
目录 0 2018-05-01 20:46 ip\obj\x86\Debug\TempPE\
文件 180 2018-05-01 20:41 ip\obj\x86\Debug\ip.Form1.resources
文件 180 2018-04-22 23:49 ip\obj\x86\Debug\ip.Properties.Resources.resources
文件 42 2018-05-01 20:29 ip\obj\x86\Debug\ip.csproj.CoreCompileInputs.cache
文件 1252 2018-05-01 20:35 ip\obj\x86\Debug\ip.csproj.FileListAbsolute.txt
文件 1012 2018-05-01 20:41 ip\obj\x86\Debug\ip.csproj.GenerateResource.cache
文件 42042 2018-05-01 20:29 ip\obj\x86\Debug\ip.csprojResolveAssemblyReference.cache
文件 10752 2018-05-01 20:44 ip\obj\x86\Debug\ip.exe
............此处省略2个文件信息
相关资源
- 动态抓取IPC#实现
- Multipart解析类库源码(HttpMultipart)
- asp.net 网页静态化组件(shipingx-Stati
- Socket局域网聊天项目(客户端源码)
- DotNetZip 解压缩 以及分卷压缩类
- C#批量解压缩桌面程序源码(ICSharpC
- jquery toolip
- IconPanel ToolTip
-
ExtJS 2.x 与Google Maps ja
vasc ript API - android 开关按钮 SlipButton
- C# 检查代理IP是否可用 程序源码
- 网络(IP)提取器(C# 源码)
- ICSharpCode.SharpZipLib 压缩文件(源码)
- IP地址及手机号码归属地查询
- 自动更换IP地址
- 单线程IP地址扫描
- NamedPipes-master(附客户端以及服务端)
- QQ C#编写的局域网内的通讯工具QQ
- 1252056375_ddvip_2352 C#下基于WCF的聊天程
- meeting 局域网视频会议完整版
- GDIPlusCFCode GDI+for wince
- chatting 可以在局域网内实现聊天
- CSharp-QQdemo 基于 Udp协议
- TCP-IP C#写的TCP的client和server的程序
- Using-GDIP-on-Windows-Mobile
- STM32F0xx_StdPeriph_Lib_V1.5.0
- Shutdown 远程关闭或重新启动局域网内
- iPhoneUI 仿iPHONE UI C#源码
- C# 气泡提示BalloonTip
- 西门子S7-200SMART TCP/IP 通讯连接库C#
评论
共有 条评论