C# - 获取 UDP 连接的往返时间

发布于 2024-11-16 06:41:22 字数 86 浏览 1 评论 0原文

我当前正在通过 UdpClient 类连接到远程服务器以发送和接收数据。一切工作正常,但我希望能够获得发送和接收信息所需的总时间。最有效、最准确的方法是什么?

I am currently connecting to a remote server via the UdpClient class to send and receive data. Everything is working fine, but I would like to be able to get the total time it takes to send and receive the information. What would be the most efficient and accurate way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

万劫不复 2024-11-23 06:41:22

您应该分析您的应用程序以获得准确的结果。我推荐 dotTrace 4.5 性能

另一种解决方案可以是秒表,就像 mvandersteen 建议的那样,但在这种情况下,我会推荐由 stackoverflow 开发人员开发的项目,可以在此处找到:http://code.google.com/p/mvc-mini-profiler/(假设您的应用程序是 MVC 3 项目)。

You should profile your application to get exact results. I would recommend dotTrace 4.5 Performance.

An alternative solution could be a Stopwatch, just like mvandersteen suggested, but in that case I would recommend a project developed by stackoverflow developers which can be found here: http://code.google.com/p/mvc-mini-profiler/ (assuming your application is an MVC 3 project).

春风十里 2024-11-23 06:41:22

可以尝试将代码包装在计时器中。粗鲁,但有效。

Stopwatch st = new Stopwatch();
st.Start();

// your code to chat with udp server

st.Stop();
long timeTaken = st.ElapsedMilliseconds;

Could could try just wrapping your code in a timer. Crude, but effective.

Stopwatch st = new Stopwatch();
st.Start();

// your code to chat with udp server

st.Stop();
long timeTaken = st.ElapsedMilliseconds;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文