Question

Which is more efficient, "data.Length==0" or "data==string.Empty"?

in this question there was an answer which describes execution times.

For Javascript : I know there is a site called http://jsperf.com/

what about c# site ? is there any ?

Was it helpful?

Solution

I don't know of a site, but I recently discovered that you can create a VS 2010 performance profiling session against a single unit test. Makes it very easy to quickly test isolated pieces of functionality. It's nearly as quick as pasting your code into a website and getting results, and you can get extremely detailed results (probably far better than an online solution, due to the massive amount of analysis VS is performing against the sampled data).

FWIW, there is an online version of a c# IDE: http://www.coderun.com/ide/

OTHER TIPS

Visual Studio 2010 Premium and Ultimate have performance profiling tools.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top