Java 中的同步块在 C# ASP.NET 中的等价物是什么?

发布于 2024-10-28 09:33:13 字数 287 浏览 1 评论 0原文

可能的重复:
java的synchronized关键字的C#版本?

我知道在使用会话时Java,您总是应该用同步块包围会话的使用,以防用户同时使用两个浏览器加载您的页面。

C# 中是否有等效的关键字/块可以完成相同的操作?

Possible Duplicate:
C# version of java's synchronized keyword?

I know that when working with a session in Java, you were always supposed to surround use of the session with a synchronized block incase the user would load your page with two browsers at the same time.

Is there an equivalent keyword/block in C# for doing the same thing?

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

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

发布评论

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

评论(1

眼泪淡了忧伤 2024-11-04 09:33:13

You could use the lock statement or decorate a method with the [MethodImpl(MethodImplOptions.Synchronized)] attribute to allow access to this block/method only from a single thread at a time.

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