So, the next equivalent in memory usage?
System.Threading.Thread.Sleep(500);
vs
using System.Threading;
...
Thread.Sleep(500);
I would have thought that the less namespace you “use” in memory, the better, but I heard that the previous example should load the namespace into memory independently. I know that this Sleepis not the best example of a starving memory method, but it is just an example.
source
share