Files
netch/Netch/NativeMethods.cs
2022-03-22 14:20:23 +08:00

9 lines
210 B
C#

using System.Runtime.InteropServices;
namespace Netch;
public static class NativeMethods
{
[DllImport("dnsapi", EntryPoint = "DnsFlushResolverCache")]
public static extern uint RefreshDNSCache();
}