-
Is there a way to pause dotnet like a virtual machine? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
This is completely the wrong way to go about doing a pause system for games, or anything else.. For one thing, if your entire game is running in C#, then you won't be able to unpause the game, because you wouldn't be able to handle any sort of resume event. Then, even if you could, this would cause problems for things like in-game music, since playback would also be paused. |
Beta Was this translation helpful? Give feedback.
-
You could emit a |
Beta Was this translation helpful? Give feedback.
-
I'd expect task manager to have a feature to pause any non-critical process. The recent Windows update just added throttling feature. |
Beta Was this translation helpful? Give feedback.
You could emit a
int3
instruction ;)