If this is your product, you can request to edit it here.
Version Reviewing: 2010
"Multiple monitors allowing you to have a monitor to work with code,"
Summary:
I’m very impressed with the overall combination of technologies and tools and the overall improvements to Visual Studio
Version Reviewing: 2010
"Good use of performance analyst time"
Summary:
I really like this feature inside Visual Studio 2010. Works pretty cool for C#. I would like to see something similar for tracing into SQL.
Version Reviewing: VS 2010
"Works for live tracing but will hurt performance"
Summary:
Visual Studio Team System Profiler is available integrated into the VSTS suite and Development version of Visual Studio. I like how it can measure concurrency contention for resources. As with most things you measure, it will hurt performance, but you can take a snapshot and put it on a hard drive for off-line analysis.
|
What does this code do?
public class Demo { public void method1() { synchronized (String.class) { System.out.println("on String.class object"); synchronized (Integer.class) { System.out.println("on Integer.class object"); } } }
Programming Language: Java