This commit is contained in:
2021-10-08 13:52:39 +03:00
parent 8bc6113e0d
commit 9521abd8d7
107 changed files with 10602 additions and 1 deletions

19
Ip.cs Normal file
View File

@@ -0,0 +1,19 @@
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()
{
}
}
}