SIN@SAPPOROWORKSの覚書

C#を中心に、夜な夜な試行錯誤したコードの記録です。

2011-11-29から1日間の記事一覧

IcmpSendEcho()によるpingの送受信(#C)(#F)

F# C#

IPHLPAPI.DLLのIcmpSendEcho()によりpingの送受信が行えます。 以前に紹介した、System.Net.NetworkInformation.Pingより、ややきめ細かい指定が可能です。 C#サンプル using System; using System.Runtime.InteropServices; namespace Example { class Prog…