Search Results

0
votes

How can an app utilize multiple cores or CPUs in .Net or Java?

The operating system takes care of multi-threading when the virtual machine is using native threads (as opposed to green-threads), and you can't specify low level details, like choosing a processor …
0
votes

Size of a dictionary

One way to do it ... initialize your tree with an arbitrary number of elements, measure the memory size consumed by the process, add 1000 new elements, measure the memory size again, subtract and d …