inet_pton

[DllImport("ws2_32.dll", SetLastError = true)]
public static extern int inet_pton(
   int Family,
   string pStringBuf,
   IntPtr pAddrBuf
);

Microsoft documentation: Link

Last updated