如何在 C# 上运行时执行一次方法
是否有可能在不使用外部属性的情况下在实例运行时多次阻止方法执行?
我希望我说清楚了! 最好的
Is there a possibility to prevent method execution more than once during Run-time of an Instance without using an external Attribute ?
I hope i was clear !
Bests
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
尝试使用静态构造函数
Try using a static constructor
希望这有帮助
Hope this help
当然,有一个标志来指示实例上的方法是否已运行。
sure, with a flag to indicate whether a method on an instance has been run.
是的,
你可以这样使用,
因为这个静态 a 不会被复制到函数调用的激活记录中,并且所有函数都只会共享一个 a。
我希望这能解决您的问题。
Yes,
you can use like this
reason being this static a will not be copied to activation records of the function calls and all will share only one a.
I hope this resolve your question.
不,如果不存储某种表明该方法已经执行的“状态”,就无法阻止方法执行。
一种方法是在开始时进行“防护”/检查:
No, there is no way to prevent method execution without storing some kind of 'state' saying the method has already been executed.
One way of doing this is a "guard" / check at start: