udpclient.close()后,重新开启就出错,难道udpclient关闭需要时间的吗?public bool start(int port)
{
    try
    {
        UDP_server = new UdpClient(Port);
        return true;
    }
    catch (Exception e)
    {
        return false;
    }
}public bool stop()
{
    try
    {
        UDP_server.close();
        return true;
    }
    catch (Exception e)
    {
        return false;
    }
}