Test / run a C # application with limited processor / RAM in Visual Studio?

I have a C # application fully developed and designed to work on devices with limited access to processors and RAM.

Is there any way to run / test this application on my development computer by specifying the parameters for using CPU, RAM, etc.

+8
c # windows unit-testing visual-studio
source share
1 answer

the method should be to get data from the resource monitor, and then set the upper limit according to it, so when using ram / cpu reaches there, the process goes into standby state (no matter what the use of above).

+1
source share

All Articles