|
|
|
|
|
by VHRanger
2214 days ago
|
|
Visual studio is slow because its an unoptimized piece of software (it misses CPU cache often and does frequent disk seeks, etc.) The best way to get performance from such software is: 1) make sure it (and the project) are on a fast SSD. NVME is better but SATA is good. 2) getting a good CPU for the workload. For pure IDE user experience it won't make much of a difference as long as it's a recent high end enough CPU (fast RAM latency, high enough clock frequency, enough cores, ...) |
|