Anonymous
public text v1 · immutable public static void Destroy(this Socket socket) {
if (socket != null) {
try {
socket.Close(100);
#if !MONO
socket.Dispose();
#endif
}
catch { }
}
}