Files
NetWork/Ip.cs
2021-10-08 13:52:39 +03:00

20 lines
340 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
namespace NetWork
{
interface Ip
{
[DllImport("IPHLPAPI.DLL")]
public static extern int ipconfig();
public static void Ma()
{
}
}
}